OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 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 # A hook that can be overridden in other repositories to add additional | 7 # A hook that can be overridden in other repositories to add additional |
8 # compilation targets to 'All'. Only used on Android. | 8 # compilation targets to 'All'. Only used on Android. |
9 'android_app_targets%': [], | 9 'android_app_targets%': [], |
10 }, | 10 }, |
(...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
144 '../chrome/chrome.gyp:linux_packages_<(channel)', | 144 '../chrome/chrome.gyp:linux_packages_<(channel)', |
145 ], | 145 ], |
146 }], | 146 }], |
147 ['enable_ipc_fuzzer==1', { | 147 ['enable_ipc_fuzzer==1', { |
148 'dependencies': [ | 148 'dependencies': [ |
149 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*', | 149 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*', |
150 ], | 150 ], |
151 }], | 151 }], |
152 ], | 152 ], |
153 }], | 153 }], |
| 154 ['chromecast==1', { |
| 155 'dependencies': [ |
| 156 '../chromecast/chromecast.gyp:*', |
| 157 ], |
| 158 }], |
154 ['use_x11==1', { | 159 ['use_x11==1', { |
155 'dependencies': [ | 160 'dependencies': [ |
156 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', | 161 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', |
157 ], | 162 ], |
158 }], | 163 }], |
159 ['OS=="win"', { | 164 ['OS=="win"', { |
160 'conditions': [ | 165 'conditions': [ |
161 ['win_use_allocator_shim==1', { | 166 ['win_use_allocator_shim==1', { |
162 'dependencies': [ | 167 'dependencies': [ |
163 '../base/allocator/allocator.gyp:*', | 168 '../base/allocator/allocator.gyp:*', |
(...skipping 1063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1227 'dependencies': [ | 1232 'dependencies': [ |
1228 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1233 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
1229 '../ui/views/views.gyp:views', | 1234 '../ui/views/views.gyp:views', |
1230 '../ui/views/views.gyp:views_unittests', | 1235 '../ui/views/views.gyp:views_unittests', |
1231 ], | 1236 ], |
1232 }, # target_name: macviews_builder | 1237 }, # target_name: macviews_builder |
1233 ], # targets | 1238 ], # targets |
1234 }], # os=='mac' and toolkit_views==1 | 1239 }], # os=='mac' and toolkit_views==1 |
1235 ], # conditions | 1240 ], # conditions |
1236 } | 1241 } |
OLD | NEW |