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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 '../chrome/chrome.gyp:linux_packages_<(channel)', | 145 '../chrome/chrome.gyp:linux_packages_<(channel)', |
146 ], | 146 ], |
147 }], | 147 }], |
148 ['enable_ipc_fuzzer==1', { | 148 ['enable_ipc_fuzzer==1', { |
149 'dependencies': [ | 149 'dependencies': [ |
150 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*', | 150 '../tools/ipc_fuzzer/ipc_fuzzer.gyp:*', |
151 ], | 151 ], |
152 }], | 152 }], |
153 ], | 153 ], |
154 }], | 154 }], |
| 155 ['chromecast==1', { |
| 156 'dependencies': [ |
| 157 '../chromecast/chromecast.gyp:*', |
| 158 ], |
| 159 }], |
155 ['use_x11==1', { | 160 ['use_x11==1', { |
156 'dependencies': [ | 161 'dependencies': [ |
157 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', | 162 '../tools/xdisplaycheck/xdisplaycheck.gyp:*', |
158 ], | 163 ], |
159 }], | 164 }], |
160 ['OS=="win"', { | 165 ['OS=="win"', { |
161 'conditions': [ | 166 'conditions': [ |
162 ['win_use_allocator_shim==1', { | 167 ['win_use_allocator_shim==1', { |
163 'dependencies': [ | 168 'dependencies': [ |
164 '../base/allocator/allocator.gyp:*', | 169 '../base/allocator/allocator.gyp:*', |
(...skipping 1068 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1233 'dependencies': [ | 1238 'dependencies': [ |
1234 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1239 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
1235 '../ui/views/views.gyp:views', | 1240 '../ui/views/views.gyp:views', |
1236 '../ui/views/views.gyp:views_unittests', | 1241 '../ui/views/views.gyp:views_unittests', |
1237 ], | 1242 ], |
1238 }, # target_name: macviews_builder | 1243 }, # target_name: macviews_builder |
1239 ], # targets | 1244 ], # targets |
1240 }], # os=='mac' and toolkit_views==1 | 1245 }], # os=='mac' and toolkit_views==1 |
1241 ], # conditions | 1246 ], # conditions |
1242 } | 1247 } |
OLD | NEW |