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 104 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
115 '../third_party/catapult/telemetry/telemetry.gyp:bitmaptools#host', | 115 '../third_party/catapult/telemetry/telemetry.gyp:bitmaptools#host', |
116 '../ui/accessibility/accessibility.gyp:accessibility_unittests', | 116 '../ui/accessibility/accessibility.gyp:accessibility_unittests', |
117 '../ui/base/ui_base_tests.gyp:ui_base_unittests', | 117 '../ui/base/ui_base_tests.gyp:ui_base_unittests', |
118 '../ui/display/display.gyp:display_unittests', | 118 '../ui/display/display.gyp:display_unittests', |
119 '../ui/events/events_unittests.gyp:events_unittests', | 119 '../ui/events/events_unittests.gyp:events_unittests', |
120 '../ui/gfx/gfx_tests.gyp:gfx_unittests', | 120 '../ui/gfx/gfx_tests.gyp:gfx_unittests', |
121 '../ui/gl/gl_tests.gyp:gl_unittests', | 121 '../ui/gl/gl_tests.gyp:gl_unittests', |
122 '../ui/snapshot/snapshot.gyp:snapshot_unittests', | 122 '../ui/snapshot/snapshot.gyp:snapshot_unittests', |
123 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_unittes
ts', | 123 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_unittes
ts', |
124 '../url/url.gyp:url_unittests', | 124 '../url/url.gyp:url_unittests', |
125 '../v8/tools/gyp/v8.gyp:v8_snapshot', | 125 '../v8/src/v8.gyp:v8_snapshot', |
126 '../v8/tools/gyp/v8.gyp:postmortem-metadata', | 126 '../v8/src/v8.gyp:postmortem-metadata', |
127 ], | 127 ], |
128 'conditions': [ | 128 'conditions': [ |
129 ['clang==1', { | 129 ['clang==1', { |
130 'dependencies': [ | 130 'dependencies': [ |
131 '../build/sanitizers/sanitizers.gyp:llvm-symbolizer', | 131 '../build/sanitizers/sanitizers.gyp:llvm-symbolizer', |
132 ], | 132 ], |
133 }], | 133 }], |
134 ['disable_nacl==0 and disable_nacl_untrusted==0', { | 134 ['disable_nacl==0 and disable_nacl_untrusted==0', { |
135 'dependencies': [ | 135 'dependencies': [ |
136 '../components/nacl.gyp:nacl_loader_unittests', | 136 '../components/nacl.gyp:nacl_loader_unittests', |
(...skipping 629 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
766 }], | 766 }], |
767 ['OS=="android" and target_arch != "x64"', { | 767 ['OS=="android" and target_arch != "x64"', { |
768 'dependencies': [ | 768 'dependencies': [ |
769 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' | 769 '../third_party/android_platform/relocation_packer.gyp:android_reloc
ation_packer_unittests#host' |
770 ], | 770 ], |
771 }], | 771 }], |
772 ], | 772 ], |
773 }, | 773 }, |
774 ] | 774 ] |
775 } | 775 } |
OLD | NEW |