| 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 349 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 '../tools/imagediff/image_diff.gyp:image_diff', | 360 '../tools/imagediff/image_diff.gyp:image_diff', |
| 361 '../tools/gn/gn.gyp:gn', | 361 '../tools/gn/gn.gyp:gn', |
| 362 '../tools/gn/gn.gyp:gn_unittests', | 362 '../tools/gn/gn.gyp:gn_unittests', |
| 363 '../ui/app_list/app_list.gyp:app_list_unittests', | 363 '../ui/app_list/app_list.gyp:app_list_unittests', |
| 364 '../url/url.gyp:url_unittests', | 364 '../url/url.gyp:url_unittests', |
| 365 ], | 365 ], |
| 366 }], | 366 }], |
| 367 ['OS=="linux"', { | 367 ['OS=="linux"', { |
| 368 'dependencies': [ | 368 'dependencies': [ |
| 369 '../breakpad/breakpad.gyp:breakpad_unittests', | 369 '../breakpad/breakpad.gyp:breakpad_unittests', |
| 370 '../breakpad/breakpad.gyp:dump_syms', | 370 '../breakpad/breakpad.gyp:dump_syms#host', |
| 371 '../breakpad/breakpad.gyp:generate_test_dump', | 371 '../breakpad/breakpad.gyp:generate_test_dump', |
| 372 '../breakpad/breakpad.gyp:minidump-2-core', | 372 '../breakpad/breakpad.gyp:minidump-2-core', |
| 373 '../dbus/dbus.gyp:dbus_test_server', | 373 '../dbus/dbus.gyp:dbus_test_server', |
| 374 '../dbus/dbus.gyp:dbus_unittests', | 374 '../dbus/dbus.gyp:dbus_unittests', |
| 375 '../media/cast/cast.gyp:tap_proxy', | 375 '../media/cast/cast.gyp:tap_proxy', |
| 376 '../net/net.gyp:disk_cache_memory_test', | 376 '../net/net.gyp:disk_cache_memory_test', |
| 377 '../net/net.gyp:flip_in_mem_edsm_server', | 377 '../net/net.gyp:flip_in_mem_edsm_server', |
| 378 '../net/net.gyp:flip_in_mem_edsm_server_unittests', | 378 '../net/net.gyp:flip_in_mem_edsm_server_unittests', |
| 379 '../net/net.gyp:hpack_example_generator', | 379 '../net/net.gyp:hpack_example_generator', |
| 380 '../net/net.gyp:hpack_fuzz_mutator', | 380 '../net/net.gyp:hpack_fuzz_mutator', |
| (...skipping 283 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 'chromium_builder_perf', | 664 'chromium_builder_perf', |
| 665 'chromium_builder_tests', | 665 'chromium_builder_tests', |
| 666 'chromium_builder_webrtc', | 666 'chromium_builder_webrtc', |
| 667 'chromium_gpu_builder', | 667 'chromium_gpu_builder', |
| 668 'chromium_gpu_debug_builder', | 668 'chromium_gpu_debug_builder', |
| 669 ], | 669 ], |
| 670 }, | 670 }, |
| 671 ] | 671 ] |
| 672 } | 672 } |
| 673 | 673 |
| OLD | NEW |