| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'variables': { | 6 'variables': { |
| 7 'chromium_code': 1, | 7 'chromium_code': 1, |
| 8 'out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out/remoting/proto', | 8 'out_dir': '<(SHARED_INTERMEDIATE_DIR)/protoc_out/remoting/proto', |
| 9 }, | 9 }, |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 '<(SHARED_INTERMEDIATE_DIR)/protoc_out', | 47 '<(SHARED_INTERMEDIATE_DIR)/protoc_out', |
| 48 ], | 48 ], |
| 49 }, | 49 }, |
| 50 # This target exports a hard dependency because it generates header | 50 # This target exports a hard dependency because it generates header |
| 51 # files. | 51 # files. |
| 52 'hard_dependency': 1, | 52 'hard_dependency': 1, |
| 53 }, | 53 }, |
| 54 | 54 |
| 55 { | 55 { |
| 56 'target_name': 'chromotocol_proto_lib', | 56 'target_name': 'chromotocol_proto_lib', |
| 57 'type': '<(library)', | 57 'type': 'static_library', |
| 58 'export_dependent_settings': [ | 58 'export_dependent_settings': [ |
| 59 '<(DEPTH)/third_party/protobuf/protobuf.gyp:protobuf_lite', | 59 '<(DEPTH)/third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 60 'chromotocol_proto', | 60 'chromotocol_proto', |
| 61 ], | 61 ], |
| 62 'dependencies': [ | 62 'dependencies': [ |
| 63 '<(DEPTH)/third_party/protobuf/protobuf.gyp:protobuf_lite', | 63 '<(DEPTH)/third_party/protobuf/protobuf.gyp:protobuf_lite', |
| 64 'chromotocol_proto', | 64 'chromotocol_proto', |
| 65 ], | 65 ], |
| 66 # This target exports a hard dependency because depedents require | 66 # This target exports a hard dependency because depedents require |
| 67 # chromotocol_proto to compile. | 67 # chromotocol_proto to compile. |
| (...skipping 12 matching lines...) Expand all Loading... |
| 80 ], | 80 ], |
| 81 }, | 81 }, |
| 82 ], | 82 ], |
| 83 } | 83 } |
| 84 | 84 |
| 85 # Local Variables: | 85 # Local Variables: |
| 86 # tab-width:2 | 86 # tab-width:2 |
| 87 # indent-tabs-mode:nil | 87 # indent-tabs-mode:nil |
| 88 # End: | 88 # End: |
| 89 # vim: set expandtab tabstop=2 shiftwidth=2: | 89 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |