| 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 535 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 546 '../ui/app_list/app_list.gyp:app_list_unittests_run', | 546 '../ui/app_list/app_list.gyp:app_list_unittests_run', |
| 547 '../ui/events/events.gyp:events_unittests_run', | 547 '../ui/events/events.gyp:events_unittests_run', |
| 548 '../ui/message_center/message_center.gyp:message_center_unittests_ru
n', | 548 '../ui/message_center/message_center.gyp:message_center_unittests_ru
n', |
| 549 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_uni
ttests_run', | 549 '../ui/touch_selection/ui_touch_selection.gyp:ui_touch_selection_uni
ttests_run', |
| 550 '../url/url.gyp:url_unittests_run', | 550 '../url/url.gyp:url_unittests_run', |
| 551 ], | 551 ], |
| 552 'conditions': [ | 552 'conditions': [ |
| 553 ['use_aura==1', { | 553 ['use_aura==1', { |
| 554 'dependencies': [ | 554 'dependencies': [ |
| 555 '../ui/aura/aura.gyp:aura_unittests_run', | 555 '../ui/aura/aura.gyp:aura_unittests_run', |
| 556 '../ui/wm/wm.gyp:wm_unittests_run', |
| 556 ], | 557 ], |
| 557 }], | 558 }], |
| 558 ['enable_webrtc==1 or OS!="android"', { | 559 ['enable_webrtc==1 or OS!="android"', { |
| 559 'dependencies': [ | 560 'dependencies': [ |
| 560 '../jingle/jingle.gyp:jingle_unittests_run', | 561 '../jingle/jingle.gyp:jingle_unittests_run', |
| 561 ], | 562 ], |
| 562 }], | 563 }], |
| 563 ], | 564 ], |
| 564 }], | 565 }], |
| 565 ['test_isolation_mode!="noop" and use_ash==1', { | 566 ['test_isolation_mode!="noop" and use_ash==1', { |
| (...skipping 124 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 690 'dependencies': [ | 691 'dependencies': [ |
| 691 # TODO(GYP): All of these targets need to be ported over. | 692 # TODO(GYP): All of these targets need to be ported over. |
| 692 '../components/components.gyp:policy_win64', | 693 '../components/components.gyp:policy_win64', |
| 693 ] | 694 ] |
| 694 }], | 695 }], |
| 695 ], | 696 ], |
| 696 }, | 697 }, |
| 697 ] | 698 ] |
| 698 } | 699 } |
| 699 | 700 |
| OLD | NEW |