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 538 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
549 '../ui/events/events.gyp:events_unittests_run', | 549 '../ui/events/events.gyp:events_unittests_run', |
550 '../ui/gl/gl_tests.gyp:gl_unittests_run', | 550 '../ui/gl/gl_tests.gyp:gl_unittests_run', |
551 '../ui/message_center/message_center.gyp:message_center_unittests_ru
n', | 551 '../ui/message_center/message_center.gyp:message_center_unittests_ru
n', |
552 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_uni
ttests_run', | 552 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_uni
ttests_run', |
553 '../url/url.gyp:url_unittests_run', | 553 '../url/url.gyp:url_unittests_run', |
554 ], | 554 ], |
555 'conditions': [ | 555 'conditions': [ |
556 ['OS=="linux"', { | 556 ['OS=="linux"', { |
557 'dependencies': [ | 557 'dependencies': [ |
558 '../sandbox/sandbox.gyp:sandbox_linux_unittests_run', | 558 '../sandbox/sandbox.gyp:sandbox_linux_unittests_run', |
| 559 '../ui/display/display.gyp:display_unittests_run', |
559 ], | 560 ], |
560 }], | 561 }], |
561 ['OS=="mac"', { | 562 ['OS=="mac"', { |
562 'dependencies': [ | 563 'dependencies': [ |
563 '../sandbox/sandbox.gyp:sandbox_mac_unittests_run', | 564 '../sandbox/sandbox.gyp:sandbox_mac_unittests_run', |
564 ], | 565 ], |
565 }], | 566 }], |
566 ['use_ash==1', { | 567 ['use_ash==1', { |
567 'dependencies': [ | 568 'dependencies': [ |
568 '../ash/ash.gyp:ash_unittests_run', | 569 '../ash/ash.gyp:ash_unittests_run', |
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
704 'dependencies': [ | 705 'dependencies': [ |
705 # TODO(GYP): All of these targets need to be ported over. | 706 # TODO(GYP): All of these targets need to be ported over. |
706 '../components/components.gyp:policy_win64', | 707 '../components/components.gyp:policy_win64', |
707 ] | 708 ] |
708 }], | 709 }], |
709 ], | 710 ], |
710 }, | 711 }, |
711 ] | 712 ] |
712 } | 713 } |
713 | 714 |
OLD | NEW |