| 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 }, | 8 }, |
| 9 'targets': [ | 9 'targets': [ |
| 10 { | 10 { |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 47 }, | 47 }, |
| 48 ], | 48 ], |
| 49 'dependencies': [ | 49 'dependencies': [ |
| 50 '../../../../third_party/protobuf2/protobuf.gyp:protoc#host', | 50 '../../../../third_party/protobuf2/protobuf.gyp:protoc#host', |
| 51 ], | 51 ], |
| 52 }, | 52 }, |
| 53 { | 53 { |
| 54 'target_name': 'sync_proto_cpp', | 54 'target_name': 'sync_proto_cpp', |
| 55 'type': 'none', | 55 'type': 'none', |
| 56 'export_dependent_settings': [ | 56 'export_dependent_settings': [ |
| 57 '../../../../third_party/protobuf2/protobuf.gyp:protobuf_lite', | 57 # TODO(akalin): Change back to protobuf_lite once it supports |
| 58 # preserving unknown fields. |
| 59 '../../../../third_party/protobuf2/protobuf.gyp:protobuf', |
| 58 'sync_proto', | 60 'sync_proto', |
| 59 ], | 61 ], |
| 60 'dependencies': [ | 62 'dependencies': [ |
| 61 '../../../../third_party/protobuf2/protobuf.gyp:protobuf_lite', | 63 # TODO(akalin): Change back to protobuf_lite once it supports |
| 64 # preserving unknown fields. |
| 65 '../../../../third_party/protobuf2/protobuf.gyp:protobuf', |
| 62 'sync_proto', | 66 'sync_proto', |
| 63 ], | 67 ], |
| 64 'direct_dependent_settings': { | 68 'direct_dependent_settings': { |
| 65 'include_dirs': [ | 69 'include_dirs': [ |
| 66 '<(SHARED_INTERMEDIATE_DIR)/protoc_out', | 70 '<(SHARED_INTERMEDIATE_DIR)/protoc_out', |
| 67 ], | 71 ], |
| 68 }, | 72 }, |
| 69 }, | 73 }, |
| 70 ], | 74 ], |
| 71 } | 75 } |
| 72 | 76 |
| 73 # Local Variables: | 77 # Local Variables: |
| 74 # tab-width:2 | 78 # tab-width:2 |
| 75 # indent-tabs-mode:nil | 79 # indent-tabs-mode:nil |
| 76 # End: | 80 # End: |
| 77 # vim: set expandtab tabstop=2 shiftwidth=2: | 81 # vim: set expandtab tabstop=2 shiftwidth=2: |
| OLD | NEW |