| 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 five targets that we are using to track the progress of the | 5 # This file defines five targets that we are using to track the progress of the |
| 6 # GYP->GN migration: | 6 # GYP->GN migration: |
| 7 # | 7 # |
| 8 # 'both_gn_and_gyp' lists what GN is currently capable of building and should | 8 # 'both_gn_and_gyp' lists what GN is currently capable of building and should |
| 9 # match the 'both_gn_and_gyp' target in //BUILD.gn. | 9 # match the 'both_gn_and_gyp' target in //BUILD.gn. |
| 10 # | 10 # |
| (...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 75 '../skia/skia_tests.gyp:skia_unittests', | 75 '../skia/skia_tests.gyp:skia_unittests', |
| 76 '../sql/sql.gyp:sql_unittests', | 76 '../sql/sql.gyp:sql_unittests', |
| 77 '../sync/sync.gyp:sync_unit_tests', | 77 '../sync/sync.gyp:sync_unit_tests', |
| 78 '../testing/gmock.gyp:gmock_main', | 78 '../testing/gmock.gyp:gmock_main', |
| 79 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blink_he
ap_unittests', | 79 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blink_he
ap_unittests', |
| 80 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blink_pl
atform_unittests', | 80 '../third_party/WebKit/Source/platform/blink_platform_tests.gyp:blink_pl
atform_unittests', |
| 81 '../third_party/WebKit/Source/web/web_tests.gyp:webkit_unit_tests', | 81 '../third_party/WebKit/Source/web/web_tests.gyp:webkit_unit_tests', |
| 82 '../third_party/WebKit/Source/wtf/wtf_tests.gyp:wtf_unittests', | 82 '../third_party/WebKit/Source/wtf/wtf_tests.gyp:wtf_unittests', |
| 83 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittests', | 83 '../third_party/leveldatabase/leveldatabase.gyp:env_chromium_unittests', |
| 84 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_unit
tests', | 84 '../third_party/libaddressinput/libaddressinput.gyp:libaddressinput_unit
tests', |
| 85 '../third_party/openh264/tests/openh264_unittests.gyp:*', | |
| 86 '../third_party/smhasher/smhasher.gyp:pmurhash', | 85 '../third_party/smhasher/smhasher.gyp:pmurhash', |
| 87 '../tools/battor_agent/battor_agent.gyp:battor_agent', | 86 '../tools/battor_agent/battor_agent.gyp:battor_agent', |
| 88 '../tools/telemetry/telemetry.gyp:bitmaptools#host', | 87 '../tools/telemetry/telemetry.gyp:bitmaptools#host', |
| 89 '../ui/accessibility/accessibility.gyp:accessibility_unittests', | 88 '../ui/accessibility/accessibility.gyp:accessibility_unittests', |
| 90 '../ui/base/ui_base_tests.gyp:ui_base_unittests', | 89 '../ui/base/ui_base_tests.gyp:ui_base_unittests', |
| 91 '../ui/display/display.gyp:display_unittests', | 90 '../ui/display/display.gyp:display_unittests', |
| 92 '../ui/events/events.gyp:events_unittests', | 91 '../ui/events/events.gyp:events_unittests', |
| 93 '../ui/gfx/gfx_tests.gyp:gfx_unittests', | 92 '../ui/gfx/gfx_tests.gyp:gfx_unittests', |
| 94 '../ui/gl/gl_tests.gyp:gl_unittests', | 93 '../ui/gl/gl_tests.gyp:gl_unittests', |
| 95 '../ui/snapshot/snapshot.gyp:snapshot_unittests', | 94 '../ui/snapshot/snapshot.gyp:snapshot_unittests', |
| (...skipping 693 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 789 ['OS=="android" and target_arch != "x64"', { | 788 ['OS=="android" and target_arch != "x64"', { |
| 790 'dependencies': [ | 789 'dependencies': [ |
| 791 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' | 790 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' |
| 792 ], | 791 ], |
| 793 }], | 792 }], |
| 794 ], | 793 ], |
| 795 }, | 794 }, |
| 796 ] | 795 ] |
| 797 } | 796 } |
| 798 | 797 |
| OLD | NEW |