OLD | NEW |
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 44 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
55 '../chrome/chrome.gyp:chromedriver_tests', | 55 '../chrome/chrome.gyp:chromedriver_tests', |
56 '../chrome/chrome.gyp:chromedriver_unittests', | 56 '../chrome/chrome.gyp:chromedriver_unittests', |
57 '../chrome/chrome.gyp:interactive_ui_tests', | 57 '../chrome/chrome.gyp:interactive_ui_tests', |
58 '../chrome/chrome.gyp:load_library_perf_tests', | 58 '../chrome/chrome.gyp:load_library_perf_tests', |
59 '../chrome/chrome.gyp:performance_browser_tests', | 59 '../chrome/chrome.gyp:performance_browser_tests', |
60 '../chrome/chrome.gyp:service_discovery_sniffer', | 60 '../chrome/chrome.gyp:service_discovery_sniffer', |
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 '../cloud_print/cloud_print.gyp:cloud_print_unittests', |
65 '../components/components.gyp:network_hints_browser', | 66 '../components/components.gyp:network_hints_browser', |
66 '../components/components.gyp:policy_templates', | 67 '../components/components.gyp:policy_templates', |
67 '../components/components.gyp:webui_generator', | 68 '../components/components.gyp:webui_generator', |
68 '../components/components_tests.gyp:components_browsertests', | 69 '../components/components_tests.gyp:components_browsertests', |
69 '../components/components_tests.gyp:components_perftests', | 70 '../components/components_tests.gyp:components_perftests', |
70 '../components/components_tests.gyp:components_unittests', | 71 '../components/components_tests.gyp:components_unittests', |
71 '../components/nacl.gyp:nacl_loader_unittests', | 72 '../components/nacl.gyp:nacl_loader_unittests', |
72 '../content/content.gyp:content_app_browser', | 73 '../content/content.gyp:content_app_browser', |
73 '../content/content.gyp:content_app_child', | 74 '../content/content.gyp:content_app_child', |
74 '../content/content_shell_and_tests.gyp:content_browsertests', | 75 '../content/content_shell_and_tests.gyp:content_browsertests', |
(...skipping 335 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
410 ], | 411 ], |
411 }], | 412 }], |
412 ], | 413 ], |
413 }, | 414 }, |
414 { | 415 { |
415 'target_name': 'gyp_remaining', | 416 'target_name': 'gyp_remaining', |
416 'type': 'none', | 417 'type': 'none', |
417 'conditions': [ | 418 'conditions': [ |
418 ['OS=="linux"', { | 419 ['OS=="linux"', { |
419 'dependencies': [ | 420 'dependencies': [ |
420 '../cloud_print/cloud_print.gyp:cloud_print_unittests', | |
421 '../third_party/webrtc/tools/tools.gyp:frame_analyzer', | 421 '../third_party/webrtc/tools/tools.gyp:frame_analyzer', |
422 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter', | 422 '../third_party/webrtc/tools/tools.gyp:rgba_to_i420_converter', |
423 | 423 |
424 # TODO(GYP) - list all of the examples explicitly. | 424 # TODO(GYP) - list all of the examples explicitly. |
425 '../ppapi/ppapi_internal.gyp:*', | 425 '../ppapi/ppapi_internal.gyp:*', |
426 ], | 426 ], |
427 'conditions': [ | 427 'conditions': [ |
428 ['disable_nacl==0 and disable_nacl_untrusted==0', { | 428 ['disable_nacl==0 and disable_nacl_untrusted==0', { |
429 'dependencies': [ | 429 'dependencies': [ |
430 '../mojo/mojo_nacl.gyp:monacl_shell', # TODO(GYP) This will be
deleted; don't port | 430 '../mojo/mojo_nacl.gyp:monacl_shell', # TODO(GYP) This will be
deleted; don't port |
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
497 'chromium_builder_perf', | 497 'chromium_builder_perf', |
498 'chromium_builder_tests', | 498 'chromium_builder_tests', |
499 'chromium_builder_webrtc', | 499 'chromium_builder_webrtc', |
500 'chromium_gpu_builder', | 500 'chromium_gpu_builder', |
501 'chromium_gpu_debug_builder', | 501 'chromium_gpu_debug_builder', |
502 ], | 502 ], |
503 }, | 503 }, |
504 ] | 504 ] |
505 } | 505 } |
506 | 506 |
OLD | NEW |