OLD | NEW |
1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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 'include_tests%': 1, | 7 'include_tests%': 1, |
8 'chromium_code': 1, | 8 'chromium_code': 1, |
9 }, | 9 }, |
10 'targets': [ | 10 'targets': [ |
11 { | 11 { |
12 'target_name': 'cast_config', | 12 'target_name': 'cast_config', |
13 'type': 'static_library', | 13 'type': 'static_library', |
14 'include_dirs': [ | 14 'include_dirs': [ |
15 '<(DEPTH)/', | 15 '<(DEPTH)/', |
16 ], | 16 ], |
17 'dependencies': [ | 17 'dependencies': [ |
18 'cast_logging_proto_lib', | 18 'cast_logging_proto_lib', |
19 '<(DEPTH)/base/base.gyp:base', | 19 '<(DEPTH)/base/base.gyp:base', |
20 ], | 20 ], |
| 21 'export_dependent_settings': [ |
| 22 'cast_logging_proto_lib', |
| 23 ], |
21 'sources': [ | 24 'sources': [ |
22 'cast_config.cc', | 25 'cast_config.cc', |
23 'cast_config.h', | 26 'cast_config.h', |
24 'cast_defines.h', | 27 'cast_defines.h', |
25 'cast_environment.cc', | 28 'cast_environment.cc', |
26 'cast_environment.h', | 29 'cast_environment.h', |
27 'logging/encoding_event_subscriber.cc', | 30 'logging/encoding_event_subscriber.cc', |
28 'logging/encoding_event_subscriber.h', | 31 'logging/encoding_event_subscriber.h', |
29 'logging/logging_defines.cc', | 32 'logging/logging_defines.cc', |
30 'logging/logging_defines.h', | 33 'logging/logging_defines.h', |
(...skipping 148 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
179 'variables': { | 182 'variables': { |
180 'proto_in_dir': 'logging/proto', | 183 'proto_in_dir': 'logging/proto', |
181 'proto_out_dir': 'media/cast/logging/proto', | 184 'proto_out_dir': 'media/cast/logging/proto', |
182 }, | 185 }, |
183 'includes': ['../../build/protoc.gypi'], | 186 'includes': ['../../build/protoc.gypi'], |
184 }, | 187 }, |
185 ], # targets | 188 ], # targets |
186 }], # include_tests | 189 }], # include_tests |
187 ], | 190 ], |
188 } | 191 } |
OLD | NEW |