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': [ |
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
53 'target_name': 'sender_logging', | 53 'target_name': 'sender_logging', |
54 'type': 'static_library', | 54 'type': 'static_library', |
55 'include_dirs': [ | 55 'include_dirs': [ |
56 '<(DEPTH)/', | 56 '<(DEPTH)/', |
57 ], | 57 ], |
58 'dependencies': [ | 58 'dependencies': [ |
59 'cast_config', | 59 'cast_config', |
60 'cast_logging_proto_lib', | 60 'cast_logging_proto_lib', |
61 '<(DEPTH)/base/base.gyp:base', | 61 '<(DEPTH)/base/base.gyp:base', |
62 ], | 62 ], |
63 'export_dependent_settings': [ | |
64 'cast_logging_proto_lib', | |
65 ], | |
66 'sources': [ | 63 'sources': [ |
67 'logging/encoding_event_subscriber.cc', | 64 'logging/encoding_event_subscriber.cc', |
68 'logging/encoding_event_subscriber.h', | 65 'logging/encoding_event_subscriber.h', |
69 ], # source | 66 ], # source |
70 }, | 67 }, |
71 ], # targets, | 68 ], # targets, |
72 'conditions': [ | 69 'conditions': [ |
73 ['include_tests==1', { | 70 ['include_tests==1', { |
74 'targets': [ | 71 'targets': [ |
75 { | 72 { |
(...skipping 70 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
146 ], # source | 143 ], # source |
147 }, | 144 }, |
148 { | 145 { |
149 'target_name': 'cast_sender_app', | 146 'target_name': 'cast_sender_app', |
150 'type': 'executable', | 147 'type': 'executable', |
151 'include_dirs': [ | 148 'include_dirs': [ |
152 '<(DEPTH)/', | 149 '<(DEPTH)/', |
153 ], | 150 ], |
154 'dependencies': [ | 151 'dependencies': [ |
155 'cast_config', | 152 'cast_config', |
156 'sender_logging', | |
157 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', | 153 '<(DEPTH)/ui/gfx/gfx.gyp:gfx', |
158 '<(DEPTH)/net/net.gyp:net_test_support', | 154 '<(DEPTH)/net/net.gyp:net_test_support', |
159 '<(DEPTH)/media/cast/cast_sender.gyp:*', | 155 '<(DEPTH)/media/cast/cast_sender.gyp:*', |
160 '<(DEPTH)/media/media.gyp:media', | 156 '<(DEPTH)/media/media.gyp:media', |
161 '<(DEPTH)/testing/gtest.gyp:gtest', | 157 '<(DEPTH)/testing/gtest.gyp:gtest', |
162 '<(DEPTH)/third_party/opus/opus.gyp:opus', | 158 '<(DEPTH)/third_party/opus/opus.gyp:opus', |
163 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport', | 159 '<(DEPTH)/media/cast/transport/cast_transport.gyp:cast_transport', |
164 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility', | 160 '<(DEPTH)/media/cast/test/utility/utility.gyp:cast_test_utility', |
165 ], | 161 ], |
166 'sources': [ | 162 'sources': [ |
(...skipping 30 matching lines...) Expand all Loading... |
197 '<(DEPTH)/media/cast/test/linux_output_window.cc', | 193 '<(DEPTH)/media/cast/test/linux_output_window.cc', |
198 '<(DEPTH)/media/cast/test/linux_output_window.h', | 194 '<(DEPTH)/media/cast/test/linux_output_window.h', |
199 ], | 195 ], |
200 }], | 196 }], |
201 ], | 197 ], |
202 }, | 198 }, |
203 ], # targets | 199 ], # targets |
204 }], # include_tests | 200 }], # include_tests |
205 ], | 201 ], |
206 } | 202 } |
OLD | NEW |