Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(933)

Side by Side Diff: build/gn_migration.gypi

Issue 962343002: Rework how the gn migration targets are included from all.gyp. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn_cleanup
Patch Set: merge to #318587 Created 5 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« build/all.gyp ('K') | « build/all.gyp ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file.
4
5 # This file defines three targets that we are using to
6 # track the progress of the GYP->GN migration:
7 #
8 # If you run 'ninja gn_build gyp_remaining gyp_groups', and then
9 # run 'ninja', the second ninja invocation should do nothing. This
10 # indicates that everything built by a ninja build is in fact
11 # listed in one of these targets.
12 #
13 # 'gn_all' lists what GN is currently capable of building and should
14 # match the 'gn_all' target in //BUILD.gn.
15 #
16 # 'gyp_remaining' lists all of the targets that still need to be converted,
17 # i.e., all of the other (non-empty) targets that a GYP build
18 # will build.
19 #
20 # 'gyp_groups' lists any empty (group) targets in the GYP build that
21 # are not picked up by gn_all or gyp_remaining; this is a
22 # separate target to ensure that when we build it, only
23 # stamp targets file are we don't accidentally pick up something
24 # not listed in one of the other two targets.
25 #
26 # TODO(GYP), TODO(dpranke) Add a build step to the bot that enforces the
27 # above contracts.
28
29 {
30 'targets': [
31 {
32 # This target should mirror the structure of //:gn_all
33 # as closely as possible, for ease of comparison.
34 'target_name': 'gn_all',
35 'type': 'none',
36 'dependencies': [
37 '../base/base.gyp:base_unittests',
38 '../cc/cc_tests.gyp:cc_unittests',
39 '../chrome/chrome.gyp:chrome',
40 '../chrome/chrome.gyp:browser_tests',
41 '../chrome/chrome.gyp:interactive_ui_tests',
42 '../chrome/chrome.gyp:sync_integration_tests',
43 '../chrome/chrome.gyp:unit_tests',
44 '../components/components_tests.gyp:components_unittests',
45 '../content/content_shell_and_tests.gyp:content_shell',
46 '../content/content_shell_and_tests.gyp:content_browsertests',
47 '../content/content_shell_and_tests.gyp:content_perftests',
48 '../content/content_shell_and_tests.gyp:content_unittests',
49 '../crypto/crypto.gyp:crypto_unittests',
50 '../extensions/extensions_tests.gyp:extensions_browsertests',
51 '../extensions/extensions_tests.gyp:extensions_unittests',
52 '../google_apis/gcm/gcm.gyp:gcm_unit_tests',
53 '../gpu/gpu.gyp:gpu_unittests',
54 '../ipc/ipc.gyp:ipc_tests',
55 '../ipc/mojo/ipc_mojo.gyp:ipc_mojo_unittests',
56 '../jingle/jingle.gyp:jingle_unittests',
57 '../media/media.gyp:media_unittests',
58 '../media/cast/cast.gyp:cast_unittests',
59 '../mojo/mojo.gyp:mojo',
60 '../mojo/mojo_base.gyp:mojo_common_unittests',
61 '../net/net.gyp:net_unittests',
62 '../printing/printing.gyp:printing_unittests',
63 '../skia/skia_tests.gyp:skia_unittests',
64 '../sql/sql.gyp:sql_unittests',
65 '../sync/sync.gyp:sync_unit_tests',
66 '../third_party/WebKit/public/all.gyp:all_blink',
67 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalidatio n_unittests',
68 '../third_party/codesighs/codesighs.gyp:codesighs',
69 '../third_party/mojo/mojo_edk_tests.gyp:mojo_system_unittests',
70 '../third_party/mojo/mojo_edk_tests.gyp:mojo_public_bindings_unittests',
71 '../third_party/mojo/mojo_edk_tests.gyp:mojo_public_environment_unittest s',
72 '../third_party/mojo/mojo_edk_tests.gyp:mojo_public_system_unittests',
73 '../third_party/mojo/mojo_edk_tests.gyp:mojo_public_utility_unittests',
74 '../third_party/pdfium/samples/samples.gyp:pdfium_test',
75 '../third_party/smhasher/smhasher.gyp:pmurhash',
76 '../third_party/sqlite/sqlite.gyp:sqlite_shell',
77 '../tools/gn/gn.gyp:gn',
78 '../tools/gn/gn.gyp:gn_unittests',
79 '../ui/accessibility/accessibility.gyp:accessibility_unittests',
80 '../ui/app_list/app_list.gyp:app_list_unittests',
81 '../ui/base/ui_base_tests.gyp:ui_base_unittests',
82 '../ui/display/display.gyp:display_unittests',
83 '../ui/events/events.gyp:events_unittests',
84 '../ui/gfx/gfx_tests.gyp:gfx_unittests',
85 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_unittes ts',
86 '../url/url.gyp:url_unittests',
87 ],
88 'conditions': [
89 ['enable_extensions==1 and OS!="mac"', {
90 'dependencies': [
91 '../extensions/shell/app_shell.gyp:app_shell_unittests',
92 ],
93 }],
94 ['OS!="win"', {
95 'dependencies': [
96 '../breakpad/breakpad.gyp:symupload',
97 ],
98 }],
99 ['use_x11==1', {
100 'dependencies': [
101 '../tools/xdisplaycheck/xdisplaycheck.gyp:xdisplaycheck',
102 ],
103 }],
104 ['toolkit_views==1', {
105 'dependencies': [
106 '../ui/views/views.gyp:views_unittests',
107 ],
108 }],
109 ['use_aura==1', {
110 'dependencies': [
111 '../ui/wm/wm.gyp:wm_unittests',
112 ],
113 }],
114 ['use_ozone==1', {
115 'dependencies': [
116 '../ui/ozone/ozone.gyp:ozone',
117 ],
118 }],
119 ['OS=="win" or OS=="mac" or chromeos==1', {
120 'dependencies': [
121 '../rlz/rlz.gyp:rlz_lib',
122 ],
123 }],
124 ['OS=="android"', {
125 'dependencies': [
126 '../base/base.gyp:chromium_android_linker',
127 '../build/android/rezip.gyp:rezip_apk_jar',
128 '../chrome/chrome.gyp:chrome_shell_apk',
129 '../chrome/chrome.gyp:chromedriver_webview_shell_apk',
130 #"//clank" TODO(GYP) - conditional somehow?
131 '../tools/imagediff/imagediff.gyp:imagediff#host',
132 '../tools/telemetry/telemetry.gyp:bitmaptools#host',
133
134 # TODO(GYP): Remove these when the components_unittests work.
135 #"//components/history/core/test:test",
136 #"//components/policy:policy_component_test_support",
137 #"//components/policy:test_support",
138 #"//components/rappor:test_support",
139 #"//components/signin/core/browser:test_support",
140 #"//components/sync_driver:test_support",
141 #"//components/user_manager",
142 #"//components/wallpaper",
143
144 '../content/content_shell_and_tests.gyp:content_shell_apk',
145
146 # TODO(GYP): Are these needed, or will they be pulled in automatical ly?
147 #"//third_party/android_tools:android_gcm_java",
148 #"//third_party/android_tools:uiautomator_java",
149 #"//third_party/android_tools:android_support_v13_java",
150 #"//third_party/android_tools:android_support_v7_appcompat_java",
151 #"//third_party/android_tools:android_support_v7_mediarouter_java",
152 #"//third_party/mesa",
153 #"//third_party/mockito:mockito_java",
154 #"//third_party/openmax_dl/dl",
155 #"//third_party/speex",
156 #"//ui/android:ui_java",
157
158 # TODO(GYP): Are these needed?
159 #"//chrome/test:test_support_unit",
160 #"//third_party/smhasher:murmurhash3",
161 #"//ui/message_center:test_support",
162 ],
163 'dependencies!': [
164 '../breakpad/breakpad.gyp:symupload',
165 '../chrome/chrome.gyp:browser_tests',
166 '../chrome/chrome.gyp:interactive_ui_tests',
167 '../chrome/chrome.gyp:sync_integration_tests',
168 '../chrome/chrome.gyp:unit_tests',
169 '../extensions/extensions_tests.gyp:extensions_browsertests',
170 '../extensions/extensions_tests.gyp:extensions_unittests',
171 '../google_apis/gcm/gcm.gyp:gcm_unit_tests',
172 '../ipc/ipc.gyp:ipc_tests',
173 '../jingle/jingle.gyp:jingle_unittests',
174 '../net/net.gyp:net_unittests',
175 #"//ppapi/examples",
176 '../third_party/pdfium/samples/samples.gyp:pdfium_test',
177 '../tools/imagediff/imagediff.gyp:imagediff',
178 '../tools/telemetry/telemetry.gyp:bitmaptools',
179 '../tools/gn/gn.gyp:gn',
180 '../tools/gn/gn.gyp:gn_unittests',
181 '../ui/app_list/app_list.gyp:app_list_unittests',
182 '../url/url.gyp:url_unittests',
183 ],
184 }],
185 ['OS=="linux"', {
186 'dependencies': [
187 '../sandbox/sandbox.gyp:chrome_sandbox',
188 '../sandbox/sandbox.gyp:sandbox_linux_unittests',
189 ],
190 }],
191 ['OS=="mac"', {
192 'dependencies': [
193 '../third_party/apple_sample_code/apple_sample_code.gyp:apple_sample _code',
194 '../third_party/molokocacao/molokocacao.gyp:molokocacao',
195
196 # TODO(GYP): remove these when the corresponding root targets work.
197 "//cc/blink",
198 "//components/ui/zoom:ui_zoom",
199 "//content",
200 "//content/test:test_support",
201 "//device/battery",
202 "//device/bluetooth",
203 "//device/nfc",
204 "//device/usb",
205 "//device/vibration",
206 "//media/blink",
207 "//pdf",
208 "//storage/browser",
209 "//third_party/brotli",
210 "//third_party/flac",
211 "//third_party/hunspell",
212 "//third_party/iccjpeg",
213 "//third_party/libphonenumber",
214 "//third_party/ots",
215 "//third_party/qcms",
216 "//third_party/smhasher:murmurhash3",
217 "//third_party/speex",
218 "//third_party/webrtc/system_wrappers",
219 "//ui/native_theme",
220 "//ui/snapshot",
221 "//ui/surface",
222 ],
223 'dependencies!': [
224 "//chrome", # TODO(GYP)
225 "//chrome/test:browser_tests", # TODO(GYP)
226 "//chrome/test:interactive_ui_tests", # TODO(GYP)
227 "//chrome/test:sync_integration_tests", # TODO(GYP)
228 "//chrome/test:unit_tests", # TODO(GYP)
229 "//components:components_unittests", # TODO(GYP)
230 "//content/test:content_browsertests", # TODO(GYP)
231 "//content/test:content_perftests", # TODO(GYP)
232 "//content/test:content_unittests", # TODO(GYP)
233 "//extensions:extensions_browsertests", # TODO(GYP)
234 "//extensions:extensions_unittests", # TODO(GYP)
235 "//net:net_unittests", # TODO(GYP)
236 "//third_party/usrsctp", # TODO(GYP)
237 "//ui/app_list:app_list_unittests", # TODO(GYP)
238 "//ui/gfx:gfx_unittests", # TODO(GYP)
239 ],
240 }],
241 ['OS=="win"', {
242 'dependencies': [
243 "//ui/metro_viewer",
244 '../third_party/codesighs/codesighs.gyp:msdump2symdb',
245 ],
246 'dependencies!': [
247 "//crypto:crypto_unittests", # TODO(GYP)
248 "//net:net_unittests", # TODO(GYP)
249 ],
250 }],
251 ],
252 },
253 {
254 # This target contains a list of things that actually currently
255 # build in GN, but aren't listed in //:gn_all
256 'target_name': 'add_to_gn_all',
257 'type': 'none',
258 'dependencies': [
259 '../breakpad/breakpad.gyp:microdump_stackwalk',
260 '../breakpad/breakpad.gyp:minidump_dump',
261 '../breakpad/breakpad.gyp:minidump_stackwalk',
262 '../cc/cc_tests.gyp:cc_perftests',
263 '../cc/blink/cc_blink_tests.gyp:cc_blink_unittests',
264 '../chrome/chrome.gyp:sync_performance_tests',
265 '../chrome/tools/profile_reset/jtl_compiler.gyp:jtl_compiler',
266 '../courgette/courgette.gyp:courgette_minimal_tool',
267 '../courgette/courgette.gyp:courgette_unittests',
268 '../extensions/shell/app_shell.gyp:app_shell',
269 '../gin/gin.gyp:gin_unittests',
270 '../google_apis/google_apis.gyp:google_apis_unittests',
271 '../gpu/gpu.gyp:angle_unittests',
272 '../gpu/gpu.gyp:gpu_perftests',
273 '../ipc/ipc.gyp:ipc_perftests',
274 '../media/media.gyp:ffmpeg_regression_tests', # TODO(GYP) this should b e conditional on media_use_ffmpeg
275 '../media/media.gyp:media_perftests',
276 '../net/net.gyp:crash_cache',
277 '../net/net.gyp:crl_set_dump',
278 '../net/net.gyp:dns_fuzz_stub',
279 '../net/net.gyp:dump_cache',
280 '../net/net.gyp:gdig',
281 '../net/net.gyp:get_server_time',
282 '../net/net.gyp:net_watcher', # TODO(GYP): This should be conditional o n use_v8_in_net
283 '../net/net.gyp:run_testserver',
284 '../net/net.gyp:stress_cache',
285 '../net/net.gyp:tld_cleanup',
286 '../ppapi/ppapi_internal.gyp:ppapi_tests', # TODO(GYP): Split out the ex amples and tests
287 '../third_party/codesighs/codesighs.gyp:maptsvdifftool',
288 '../third_party/mojo/mojo_edk_tests.gyp:mojo_public_system_perftests',
289 '../ui/compositor/compositor.gyp:compositor_unittests',
290 '../ui/keyboard/keyboard.gyp:keyboard_unittests',
291 '../ui/snapshot/snapshot.gyp:snapshot_unittests',
292 ],
293 'conditions': [
294 ['use_aura==1', {
295 'dependencies': [
296 '../ui/aura/aura.gyp:aura_bench',
297 ],
298 }],
299 ['use_ash==1', {
300 'dependencies': [
301 '../ash/ash.gyp:ash_shell',
302 '../ash/ash.gyp:ash_shell_unittests',
303 '../ash/ash.gyp:ash_unittests',
304 ],
305 }],
306 ['OS=="android"', {
307 'dependencies': [
308 '../breakpad/breakpad.gyp:dump_syms',
309 ],
310 }],
311 ['OS=="linux"', {
312 'dependencies': [
313 '../breakpad/breakpad.gyp:breakpad_unittests',
314 '../breakpad/breakpad.gyp:dump_syms',
315 '../breakpad/breakpad.gyp:generate_test_dump',
316 '../breakpad/breakpad.gyp:minidump-2-core',
317 '../net/net.gyp:disk_cache_memory_test',
318 '../net/net.gyp:flip_in_mem_edsm_server',
319 '../net/net.gyp:flip_in_mem_edsm_server_unittests',
320 '../net/net.gyp:quic_client',
321 '../net/net.gyp:quic_server',
322 '../dbus/dbus.gyp:dbus_unittests',
323 ],
324 }],
325 ['OS!="win"', {
326 'dependencies': [
327 '../third_party/codesighs/codesighs.gyp:nm2tsv',
328 ],
329 }],
330 ['OS=="mac"', {
331 'dependencies': [
332 '../breakpad/breakpad.gyp:crash_inspector',
333 '../breakpad/breakpad.gyp:dump_syms',
334 '../breakpad/breakpad.gyp:symupload',
335 ],
336 }],
337 ['OS=="android" or OS=="linux"', {
338 'dependencies': [
339 '../net/net.gyp:disk_cache_memory_test',
340 ],
341 }],
342 ],
343 },
344 {
345 'target_name': 'gyp_remaining',
346 'type': 'none',
347 'dependencies': [
348 ':add_to_gn_all',
349 ],
350 'conditions': [
351 ['OS=="linux"', {
352 'dependencies': [
353 '../base/base.gyp:base_i18n_perftests',
354 '../base/base.gyp:base_perftests',
355 '../base/base.gyp:build_utf8_validator_tables',
356 '../base/base.gyp:check_example',
357 '../base/base.gyp:protect_file_posix',
358 '../breakpad/breakpad.gyp:core-2-minidump',
359 '../build/sanitizers/sanitizers.gyp:llvm-symbolizer',
360 '../chrome/chrome.gyp:chrome_app_unittests',
361 '../chrome/chrome.gyp:chromedriver',
362 '../chrome/chrome.gyp:chromedriver_tests',
363 '../chrome/chrome.gyp:chromedriver_unittests',
364 '../chrome/chrome.gyp:load_library_perf_tests',
365 '../chrome/chrome.gyp:performance_browser_tests',
366 '../chrome/chrome.gyp:service_discovery_sniffer',
367 '../cloud_print/cloud_print.gyp:cloud_print_unittests',
368 '../components/components.gyp:network_hints_browser',
369 '../components/components.gyp:policy_templates',
370 '../components/components.gyp:session_manager_component',
gunsch 2015/03/02 00:23:00 This target isn't defined for all Linux builds: h
371 '../components/components_tests.gyp:components_browsertests',
372 '../components/components_tests.gyp:components_perftests',
373 '../components/nacl.gyp:nacl_loader_unittests',
374 '../content/content.gyp:content_app_browser',
375 '../content/content.gyp:content_app_child',
376 '../content/content_shell_and_tests.gyp:content_gl_benchmark',
377 '../content/content_shell_and_tests.gyp:content_gl_tests',
378 '../courgette/courgette.gyp:courgette',
379 '../courgette/courgette.gyp:courgette_fuzz',
380 '../dbus/dbus.gyp:dbus_test_server',
381 '../device/device_tests.gyp:device_unittests',
382 '../gin/gin.gyp:gin_v8_snapshot_fingerprint',
383 '../gin/gin.gyp:gin_shell',
384 '../google_apis/gcm/gcm.gyp:mcs_probe',
385 '../gpu/gpu.gyp:gl_tests',
386 '../gpu/tools/tools.gyp:compositor_model_bench',
gunsch 2015/03/02 00:31:02 this is also not found in Chromecast build https:
387 '../gpu/gles2_conform_support/gles2_conform_support.gyp:gles2_confor m_support',
388 '../gpu/gles2_conform_support/gles2_conform_test.gyp:gles2_conform_t est',
389 '../gpu/khronos_glcts_support/khronos_glcts_test.gyp:khronos_glcts_t est',
390 '../media/cast/cast.gyp:cast_benchmarks',
391 '../media/cast/cast.gyp:generate_barcode_video',
392 '../media/cast/cast.gyp:generate_timecode_audio',
393 '../media/cast/cast.gyp:tap_proxy',
394 '../media/media.gyp:player_x11',
gunsch 2015/03/02 00:31:02 neither is this https://code.google.com/p/chromiu
395 '../mojo/mojo_base.gyp:mojo_application_chromium',
396 '../mojo/mojo_nacl.gyp:monacl_shell',
397 '../net/net.gyp:hpack_example_generator',
398 '../net/net.gyp:hpack_fuzz_mutator',
399 '../net/net.gyp:hpack_fuzz_wrapper',
400 '../net/net.gyp:net_perftests',
401 '../ppapi/ppapi_internal.gyp:ppapi_unittests',
402 '../ppapi/tools/ppapi_tools.gyp:pepper_hash_for_uma',
403 '../remoting/app_remoting_webapp.gyp:ar_sample_app',
404 '../remoting/remoting.gyp:remoting_host',
gunsch 2015/03/02 00:31:02 neither is this https://code.google.com/p/chromiu
405 '../remoting/remoting.gyp:remoting_it2me_native_messaging_host',
gunsch 2015/03/02 00:31:02 or this https://code.google.com/p/chromium/codese
406 '../remoting/remoting.gyp:remoting_key_tester',
407 '../remoting/remoting.gyp:remoting_me2me_host',
gunsch 2015/03/02 00:31:02 or the next two deps: https://code.google.com/p/ch
408 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host',
409 '../remoting/remoting.gyp:remoting_native_messaging_manifests',
gunsch 2015/03/02 00:31:02 or this, remoting_perftests, and remoting_start_ho
410 '../remoting/remoting.gyp:remoting_perftests',
411 '../remoting/remoting.gyp:remoting_start_host',
412 '../remoting/remoting.gyp:remoting_unittests',
413 '../sandbox/sandbox.gyp:sandbox_linux_jni_unittests',
414 '../skia/skia.gyp:filter_fuzz_stub',
415 '../skia/skia.gyp:image_operations_bench',
416 '../sync/sync.gyp:run_sync_testserver',
417 '../sync/sync.gyp:sync_endtoend_tests',
418 '../sync/tools/sync_tools.gyp:sync_client',
419 '../sync/tools/sync_tools.gyp:sync_listen_notifications',
420 '../testing/gmock.gyp:gmock_main',
421 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittes ts',
422 '../third_party/libphonenumber/libphonenumber.gyp:libphonenumber_uni ttests',
423 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_ unittests',
424 '../third_party/webrtc/tools/tools.gyp:frame_analyzer',
425 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter',
426 '../tools/gn/gn.gyp:generate_test_gn_data',
427 '../tools/perf/clear_system_cache/clear_system_cache.gyp:clear_syste m_cache',
428 '../tools/telemetry/telemetry.gyp:bitmaptools',
429 '../ui/app_list/app_list.gyp:app_list_demo',
gunsch 2015/03/02 00:31:03 or this (toolkit_views==1): https://code.google.c
430 '../ui/compositor/compositor.gyp:compositor_unittests',
431 '../ui/message_center/message_center.gyp:message_center_unittests',
432 '../ui/views/examples/examples.gyp:views_examples_with_content_exe',
433 '../v8/tools/gyp/v8.gyp:v8_snapshot',
434 '../v8/tools/gyp/v8.gyp:postmortem-metadata',
435
436 # TODO(GYP) - list all of the examples explicitly.
437 '../ppapi/ppapi_internal.gyp:*',
438 ],
439 'conditions': [
440 ['test_isolation_mode!="noop"', {
441 'dependencies': [
442 '../ash/ash.gyp:ash_unittests_run',
443 '../base/base.gyp:base_unittests_run',
444 '../cc/cc_tests.gyp:cc_unittests_run',
445 '../chrome/chrome.gyp:browser_tests_run',
446 '../chrome/chrome.gyp:chrome_run',
447 '../chrome/chrome.gyp:interactive_ui_tests_run',
448 '../chrome/chrome.gyp:sync_integration_tests_run',
449 '../chrome/chrome.gyp:unit_tests_run',
450 '../components/components_tests.gyp:components_browsertests_run' ,
451 '../components/components_tests.gyp:components_unittests_run',
452 '../content/content_shell_and_tests.gyp:content_browsertests_run ',
453 '../content/content_shell_and_tests.gyp:content_unittests_run',
454 '../crypto/crypto.gyp:crypto_unittests_run',
455 '../courgette/courgette.gyp:courgette_unittests_run',
456 '../gpu/gpu.gyp:gpu_unittests_run',
457 '../media/cast/cast.gyp:cast_unittests_run',
458 '../media/media.gyp:media_unittests_run',
459 '../net/net.gyp:net_unittests_run',
460 '../sandbox/sandbox.gyp:sandbox_linux_unittests_run',
461 '../sql/sql.gyp:sql_unittests_run',
462 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinv alidation_unittests_run',
463 '../ui/accessibility/accessibility.gyp:accessibility_unittests_r un',
464 '../ui/app_list/app_list.gyp:app_list_unittests_run',
465 '../ui/events/events.gyp:events_unittests_run',
466 '../ui/message_center/message_center.gyp:message_center_unittest s_run',
467 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection _unittests_run',
468 ],
469 }],
470 ],
471 }],
472 ['use_aura==1', {
473 'dependencies': [
474 '../ui/aura/aura.gyp:aura_demo',
475 '../ui/aura/aura.gyp:aura_unittests',
476 ],
477 }],
478 ],
479 },
480 {
481 # This target, when built, should cause no actual work
482 # to be done, just update a bunch of stamp files.
483 'target_name': 'gyp_groups',
484 'type': 'none',
485 'dependencies': [
486 'All',
487 'aura_builder',
488 'blink_tests',
489 'chromium_builder_asan',
490 'chromium_builder_chromedriver',
491 'chromium_builder_perf',
492 'chromium_builder_tests',
493 'chromium_builder_webrtc',
494 'chromium_gpu_builder',
495 'chromium_gpu_debug_builder',
496 ],
497 },
498 ]
499 }
500
OLDNEW
« build/all.gyp ('K') | « build/all.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698