Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 if (current_toolchain == host_toolchain) { | |
| 6 executable("proto_zero_plugin") { | |
| 7 sources = [ | |
| 8 "proto_zero_generator.cc", | |
| 9 "proto_zero_generator.h", | |
| 10 "proto_zero_plugin.cc", | |
| 11 ] | |
| 12 | |
| 13 deps = [ | |
| 14 "//base:base", | |
| 15 "//third_party/protobuf:protoc_lib", | |
| 16 ] | |
| 17 } | |
| 18 } | |
| OLD | NEW |