blob: 0f8cc4d290abd7b32bb27b6c2fb94bdc2b2c2e01 [file] [log] [blame]
Primiano Tuccifd484232017-10-25 00:15:39 +01001# Copyright (C) 2017 The Android Open Source Project
2#
3# Licensed under the Apache License, Version 2.0 (the "License");
4# you may not use this file except in compliance with the License.
5# You may obtain a copy of the License at
6#
7# http://www.apache.org/licenses/LICENSE-2.0
8#
9# Unless required by applicable law or agreed to in writing, software
10# distributed under the License is distributed on an "AS IS" BASIS,
11# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12# See the License for the specific language governing permissions and
13# limitations under the License.
14
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080015import("//build_overrides/build.gni")
16
Primiano Tuccifd484232017-10-25 00:15:39 +010017if (current_toolchain == host_toolchain) {
18 executable("protoc_plugin") {
19 sources = [
20 "protozero_generator.cc",
21 "protozero_generator.h",
22 "protozero_plugin.cc",
23 ]
Oystein Eftevaagdd727e42017-12-05 08:49:55 -080024
25 if (!build_with_chromium) {
26 deps = [
27 "../../../gn:default_deps",
28 "//buildtools:protoc_lib",
29 ]
30 } else {
31 deps = [
32 "//third_party/protobuf:protoc_lib",
33 ]
34 }
35
Primiano Tuccid7d1be02017-10-30 17:41:34 +000036 if (is_clang) {
37 # Internal protobuf headers hit this.
38 cflags = [ "-Wno-unreachable-code" ]
39 }
Primiano Tuccifd484232017-10-25 00:15:39 +010040 }
41} # host_toolchain