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'. | 8 # compilation targets to 'All'. |
9 'app_targets%': [], | 9 'app_targets%': [], |
10 # For Android-specific targets. | 10 # For Android-specific targets. |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
101 '../sync/sync.gyp:*', | 101 '../sync/sync.gyp:*', |
102 ], | 102 ], |
103 }], | 103 }], |
104 ['OS!="ios" and OS!="android"', { | 104 ['OS!="ios" and OS!="android"', { |
105 'dependencies': [ | 105 'dependencies': [ |
106 '../third_party/re2/re2.gyp:re2', | 106 '../third_party/re2/re2.gyp:re2', |
107 '../chrome/chrome.gyp:*', | 107 '../chrome/chrome.gyp:*', |
108 '../chrome/tools/profile_reset/jtl_compiler.gyp:*', | 108 '../chrome/tools/profile_reset/jtl_compiler.gyp:*', |
109 '../cc/blink/cc_blink_tests.gyp:*', | 109 '../cc/blink/cc_blink_tests.gyp:*', |
110 '../cc/cc_tests.gyp:*', | 110 '../cc/cc_tests.gyp:*', |
111 '../device/bluetooth/bluetooth.gyp:*', | |
112 '../device/device_tests.gyp:*', | |
113 '../device/usb/usb.gyp:*', | 111 '../device/usb/usb.gyp:*', |
114 '../gin/gin.gyp:*', | 112 '../gin/gin.gyp:*', |
115 '../gpu/gpu.gyp:*', | 113 '../gpu/gpu.gyp:*', |
116 '../gpu/tools/tools.gyp:*', | 114 '../gpu/tools/tools.gyp:*', |
117 '../ipc/ipc.gyp:*', | 115 '../ipc/ipc.gyp:*', |
118 '../ipc/mojo/ipc_mojo.gyp:*', | 116 '../ipc/mojo/ipc_mojo.gyp:*', |
119 '../jingle/jingle.gyp:*', | 117 '../jingle/jingle.gyp:*', |
120 '../media/cast/cast.gyp:*', | 118 '../media/cast/cast.gyp:*', |
121 '../media/media.gyp:*', | 119 '../media/media.gyp:*', |
122 '../mojo/mojo.gyp:*', | 120 '../mojo/mojo.gyp:*', |
(...skipping 20 matching lines...) Expand all Loading... |
143 '../third_party/ots/ots.gyp:*', | 141 '../third_party/ots/ots.gyp:*', |
144 '../third_party/pdfium/samples/samples.gyp:*', | 142 '../third_party/pdfium/samples/samples.gyp:*', |
145 '../third_party/qcms/qcms.gyp:*', | 143 '../third_party/qcms/qcms.gyp:*', |
146 '../tools/gn/gn.gyp:*', | 144 '../tools/gn/gn.gyp:*', |
147 '../tools/perf/clear_system_cache/clear_system_cache.gyp:*', | 145 '../tools/perf/clear_system_cache/clear_system_cache.gyp:*', |
148 '../tools/telemetry/telemetry.gyp:*', | 146 '../tools/telemetry/telemetry.gyp:*', |
149 '../v8/tools/gyp/v8.gyp:*', | 147 '../v8/tools/gyp/v8.gyp:*', |
150 '<(libjpeg_gyp_path):*', | 148 '<(libjpeg_gyp_path):*', |
151 ], | 149 ], |
152 }], | 150 }], |
| 151 ['OS!="ios"', { |
| 152 'dependencies': [ |
| 153 '../device/bluetooth/bluetooth.gyp:*', |
| 154 '../device/device_tests.gyp:*', |
| 155 ], |
| 156 }], |
153 ['use_openssl==0 and (OS=="mac" or OS=="ios" or OS=="win")', { | 157 ['use_openssl==0 and (OS=="mac" or OS=="ios" or OS=="win")', { |
154 'dependencies': [ | 158 'dependencies': [ |
155 '../third_party/nss/nss.gyp:*', | 159 '../third_party/nss/nss.gyp:*', |
156 ], | 160 ], |
157 }], | 161 }], |
158 ['OS=="win" or OS=="ios" or OS=="linux"', { | 162 ['OS=="win" or OS=="ios" or OS=="linux"', { |
159 'dependencies': [ | 163 'dependencies': [ |
160 '../breakpad/breakpad.gyp:*', | 164 '../breakpad/breakpad.gyp:*', |
161 ], | 165 ], |
162 }], | 166 }], |
(...skipping 1162 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1325 'dependencies': [ | 1329 'dependencies': [ |
1326 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', | 1330 '../ui/views/examples/examples.gyp:views_examples_with_content_exe', |
1327 '../ui/views/views.gyp:views', | 1331 '../ui/views/views.gyp:views', |
1328 '../ui/views/views.gyp:views_unittests', | 1332 '../ui/views/views.gyp:views_unittests', |
1329 ], | 1333 ], |
1330 }, # target_name: macviews_builder | 1334 }, # target_name: macviews_builder |
1331 ], # targets | 1335 ], # targets |
1332 }], # os=='mac' and toolkit_views==1 | 1336 }], # os=='mac' and toolkit_views==1 |
1333 ], # conditions | 1337 ], # conditions |
1334 } | 1338 } |
OLD | NEW |