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 526 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
537 '../media/midi/midi.gyp:midi_unittests_run', | 537 '../media/midi/midi.gyp:midi_unittests_run', |
538 '../net/net.gyp:net_unittests_run', | 538 '../net/net.gyp:net_unittests_run', |
539 '../sql/sql.gyp:sql_unittests_run', | 539 '../sql/sql.gyp:sql_unittests_run', |
540 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid
ation_unittests_run', | 540 '../third_party/cacheinvalidation/cacheinvalidation.gyp:cacheinvalid
ation_unittests_run', |
541 '../ui/accessibility/accessibility.gyp:accessibility_unittests_run', | 541 '../ui/accessibility/accessibility.gyp:accessibility_unittests_run', |
542 '../ui/app_list/app_list.gyp:app_list_unittests_run', | 542 '../ui/app_list/app_list.gyp:app_list_unittests_run', |
543 '../ui/aura/aura.gyp:aura_unittests_run', | 543 '../ui/aura/aura.gyp:aura_unittests_run', |
544 '../ui/events/events.gyp:events_unittests_run', | 544 '../ui/events/events.gyp:events_unittests_run', |
545 '../ui/message_center/message_center.gyp:message_center_unittests_ru
n', | 545 '../ui/message_center/message_center.gyp:message_center_unittests_ru
n', |
546 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_uni
ttests_run', | 546 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_uni
ttests_run', |
| 547 '../url/url.gyp:url_unittests_run', |
547 ], | 548 ], |
548 }], | 549 }], |
549 ['test_isolation_mode!="noop" and use_ash==1', { | 550 ['test_isolation_mode!="noop" and use_ash==1', { |
550 'dependencies': [ | 551 'dependencies': [ |
551 '../ash/ash.gyp:ash_unittests_run', | 552 '../ash/ash.gyp:ash_unittests_run', |
552 ], | 553 ], |
553 }], | 554 }], |
554 ['test_isolation_mode!="noop" and OS=="linux"', { | 555 ['test_isolation_mode!="noop" and OS=="linux"', { |
555 'dependencies': [ | 556 'dependencies': [ |
556 '../sandbox/sandbox.gyp:sandbox_linux_unittests_run', | 557 '../sandbox/sandbox.gyp:sandbox_linux_unittests_run', |
(...skipping 117 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
674 'dependencies': [ | 675 'dependencies': [ |
675 # TODO(GYP): All of these targets need to be ported over. | 676 # TODO(GYP): All of these targets need to be ported over. |
676 '../components/components.gyp:policy_win64', | 677 '../components/components.gyp:policy_win64', |
677 ] | 678 ] |
678 }], | 679 }], |
679 ], | 680 ], |
680 }, | 681 }, |
681 ] | 682 ] |
682 } | 683 } |
683 | 684 |
OLD | NEW |