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

Side by Side Diff: build/gn_migration.gypi

Issue 1041163004: Add a 'gyp_only' GYP target for the GN migration. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@performance_browser_tests
Patch Set: merge to #323155 Created 5 years, 8 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
« no previous file with comments | « no previous file | 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
1 # Copyright (c) 2015 The Chromium Authors. All rights reserved. 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 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 # This file defines three targets that we are using to 5 # This file defines three targets that we are using to
6 # track the progress of the GYP->GN migration: 6 # track the progress of the GYP->GN migration:
7 # 7 #
8 # If you run 'ninja gn_build gyp_remaining gyp_groups', and then 8 # If you run 'ninja gn_build gyp_remaining gyp_groups', and then
9 # run 'ninja', the second ninja invocation should do nothing. This 9 # run 'ninja', the second ninja invocation should do nothing. This
10 # indicates that everything built by a ninja build is in fact 10 # indicates that everything built by a ninja build is in fact
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 '../chrome/chrome.gyp:sync_integration_tests', 61 '../chrome/chrome.gyp:sync_integration_tests',
62 '../chrome/chrome.gyp:sync_performance_tests', 62 '../chrome/chrome.gyp:sync_performance_tests',
63 '../chrome/chrome.gyp:unit_tests', 63 '../chrome/chrome.gyp:unit_tests',
64 '../chrome/tools/profile_reset/jtl_compiler.gyp:jtl_compiler', 64 '../chrome/tools/profile_reset/jtl_compiler.gyp:jtl_compiler',
65 '../components/components.gyp:network_hints_browser', 65 '../components/components.gyp:network_hints_browser',
66 '../components/components.gyp:policy_templates', 66 '../components/components.gyp:policy_templates',
67 '../components/components.gyp:webui_generator', 67 '../components/components.gyp:webui_generator',
68 '../components/components_tests.gyp:components_browsertests', 68 '../components/components_tests.gyp:components_browsertests',
69 '../components/components_tests.gyp:components_perftests', 69 '../components/components_tests.gyp:components_perftests',
70 '../components/components_tests.gyp:components_unittests', 70 '../components/components_tests.gyp:components_unittests',
71 '../components/nacl.gyp:nacl_loader_unittests',
72 '../content/content.gyp:content_app_browser', 71 '../content/content.gyp:content_app_browser',
73 '../content/content.gyp:content_app_child', 72 '../content/content.gyp:content_app_child',
74 '../content/content_shell_and_tests.gyp:content_browsertests', 73 '../content/content_shell_and_tests.gyp:content_browsertests',
75 '../content/content_shell_and_tests.gyp:content_gl_benchmark', 74 '../content/content_shell_and_tests.gyp:content_gl_benchmark',
76 '../content/content_shell_and_tests.gyp:content_gl_tests', 75 '../content/content_shell_and_tests.gyp:content_gl_tests',
77 '../content/content_shell_and_tests.gyp:content_perftests', 76 '../content/content_shell_and_tests.gyp:content_perftests',
78 '../content/content_shell_and_tests.gyp:content_shell', 77 '../content/content_shell_and_tests.gyp:content_shell',
79 '../content/content_shell_and_tests.gyp:content_unittests', 78 '../content/content_shell_and_tests.gyp:content_unittests',
80 '../courgette/courgette.gyp:courgette', 79 '../courgette/courgette.gyp:courgette',
81 '../courgette/courgette.gyp:courgette_fuzz', 80 '../courgette/courgette.gyp:courgette_fuzz',
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
181 '../url/url.gyp:url_unittests', 180 '../url/url.gyp:url_unittests',
182 '../v8/tools/gyp/v8.gyp:v8_snapshot', 181 '../v8/tools/gyp/v8.gyp:v8_snapshot',
183 '../v8/tools/gyp/v8.gyp:postmortem-metadata', 182 '../v8/tools/gyp/v8.gyp:postmortem-metadata',
184 ], 183 ],
185 'conditions': [ 184 'conditions': [
186 ['chromeos== 1 or use_ash==1', { 185 ['chromeos== 1 or use_ash==1', {
187 'dependencies': [ 186 'dependencies': [
188 '../components/components.gyp:session_manager_component', 187 '../components/components.gyp:session_manager_component',
189 ], 188 ],
190 }], 189 }],
190 ['disable_nacl==0 and disable_nacl_untrusted==0', {
191 'dependencies': [
192 '../components/nacl.gyp:nacl_loader_unittests',
193 ]
194 }],
191 ['enable_extensions==1 and OS!="mac"', { 195 ['enable_extensions==1 and OS!="mac"', {
192 'dependencies': [ 196 'dependencies': [
193 '../extensions/shell/app_shell.gyp:app_shell', 197 '../extensions/shell/app_shell.gyp:app_shell',
194 '../extensions/shell/app_shell.gyp:app_shell_unittests', 198 '../extensions/shell/app_shell.gyp:app_shell_unittests',
195 ], 199 ],
196 }], 200 }],
197 ['OS!="win"', { 201 ['OS!="win"', {
198 'dependencies': [ 202 'dependencies': [
199 '../breakpad/breakpad.gyp:symupload', 203 '../breakpad/breakpad.gyp:symupload',
200 ], 204 ],
(...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after
405 ], 409 ],
406 }], 410 }],
407 ['OS=="android" or OS=="linux"', { 411 ['OS=="android" or OS=="linux"', {
408 'dependencies': [ 412 'dependencies': [
409 '../net/net.gyp:disk_cache_memory_test', 413 '../net/net.gyp:disk_cache_memory_test',
410 ], 414 ],
411 }], 415 }],
412 ], 416 ],
413 }, 417 },
414 { 418 {
419 'target_name': 'gyp_only',
420 'type': 'none',
421 'conditions': [
422 ['OS=="linux"', {
423 'conditions': [
424 ['disable_nacl==0 and disable_nacl_untrusted==0', {
425 'dependencies': [
426 '../mojo/mojo_nacl.gyp:monacl_shell', # This should not be buil t in chromium.
427 ]
428 }],
429 ]
430 }],
431 ],
432 },
433 {
415 'target_name': 'gyp_remaining', 434 'target_name': 'gyp_remaining',
416 'type': 'none', 435 'type': 'none',
417 'conditions': [ 436 'conditions': [
418 ['OS=="linux"', { 437 ['OS=="linux"', {
419 'dependencies': [ 438 'dependencies': [
420 '../cloud_print/cloud_print.gyp:cloud_print_unittests', 439 '../cloud_print/cloud_print.gyp:cloud_print_unittests',
421 '../third_party/webrtc/tools/tools.gyp:frame_analyzer', 440 '../third_party/webrtc/tools/tools.gyp:frame_analyzer',
422 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter', 441 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter',
423 442
424 # TODO(GYP) - list all of the examples explicitly. 443 # TODO(GYP) - list all of the examples explicitly.
425 '../ppapi/ppapi_internal.gyp:*', 444 '../ppapi/ppapi_internal.gyp:*',
426 ], 445 ],
427 'conditions': [ 446 'conditions': [
428 ['disable_nacl==0 and disable_nacl_untrusted==0', {
429 'dependencies': [
430 '../mojo/mojo_nacl.gyp:monacl_shell', # TODO(GYP) This will be deleted; don't port
431 '../remoting/remoting.gyp:remoting_key_tester',
432 ]
433 }],
434 ['remoting==1', { 447 ['remoting==1', {
435 'dependencies': [ 448 'dependencies': [
436 '../remoting/app_remoting_webapp.gyp:ar_sample_app', 449 '../remoting/app_remoting_webapp.gyp:ar_sample_app',
437 '../remoting/remoting.gyp:remoting_host', 450 '../remoting/remoting.gyp:remoting_host',
438 '../remoting/remoting.gyp:remoting_it2me_native_messaging_host', 451 '../remoting/remoting.gyp:remoting_it2me_native_messaging_host',
439 '../remoting/remoting.gyp:remoting_me2me_host', 452 '../remoting/remoting.gyp:remoting_me2me_host',
440 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host', 453 '../remoting/remoting.gyp:remoting_me2me_native_messaging_host',
441 '../remoting/remoting.gyp:remoting_native_messaging_manifests', 454 '../remoting/remoting.gyp:remoting_native_messaging_manifests',
442 '../remoting/remoting.gyp:remoting_perftests', 455 '../remoting/remoting.gyp:remoting_perftests',
443 '../remoting/remoting.gyp:remoting_start_host', 456 '../remoting/remoting.gyp:remoting_start_host',
444 ], 457 ],
458 'conditions': [
459 ['disable_nacl==0 and disable_nacl_untrusted==0', {
460 'dependencies': [
461 '../remoting/remoting.gyp:remoting_key_tester',
462 ]
463 }],
464 ],
445 }], 465 }],
446 ['test_isolation_mode!="noop"', { 466 ['test_isolation_mode!="noop"', {
447 'dependencies': [ 467 'dependencies': [
448 '../base/base.gyp:base_unittests_run', 468 '../base/base.gyp:base_unittests_run',
449 '../cc/cc_tests.gyp:cc_unittests_run', 469 '../cc/cc_tests.gyp:cc_unittests_run',
450 '../chrome/chrome.gyp:browser_tests_run', 470 '../chrome/chrome.gyp:browser_tests_run',
451 '../chrome/chrome.gyp:chrome_run', 471 '../chrome/chrome.gyp:chrome_run',
452 '../chrome/chrome.gyp:interactive_ui_tests_run', 472 '../chrome/chrome.gyp:interactive_ui_tests_run',
453 '../chrome/chrome.gyp:sync_integration_tests_run', 473 '../chrome/chrome.gyp:sync_integration_tests_run',
454 '../chrome/chrome.gyp:unit_tests_run', 474 '../chrome/chrome.gyp:unit_tests_run',
(...skipping 42 matching lines...) Expand 10 before | Expand all | Expand 10 after
497 'chromium_builder_perf', 517 'chromium_builder_perf',
498 'chromium_builder_tests', 518 'chromium_builder_tests',
499 'chromium_builder_webrtc', 519 'chromium_builder_webrtc',
500 'chromium_gpu_builder', 520 'chromium_gpu_builder',
501 'chromium_gpu_debug_builder', 521 'chromium_gpu_debug_builder',
502 ], 522 ],
503 }, 523 },
504 ] 524 ]
505 } 525 }
506 526
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698