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 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
350 '../tools/gn/gn.gyp:gn_unittests', | 350 '../tools/gn/gn.gyp:gn_unittests', |
351 '../ui/app_list/app_list.gyp:app_list_unittests', | 351 '../ui/app_list/app_list.gyp:app_list_unittests', |
352 '../url/url.gyp:url_unittests', | 352 '../url/url.gyp:url_unittests', |
353 ], | 353 ], |
354 }], | 354 }], |
355 ['OS=="android" and chromecast==0', { | 355 ['OS=="android" and chromecast==0', { |
356 'dependencies': [ | 356 'dependencies': [ |
357 '../chrome/chrome.gyp:chrome_public_apk', | 357 '../chrome/chrome.gyp:chrome_public_apk', |
358 '../chrome/chrome.gyp:chrome_public_test_apk', | 358 '../chrome/chrome.gyp:chrome_public_test_apk', |
359 '../chrome/chrome.gyp:chromedriver_webview_shell_apk', | 359 '../chrome/chrome.gyp:chromedriver_webview_shell_apk', |
| 360 '../third_party/custom_tabs_client/custom_tabs_client.gyp:custom_tab
s_client_example_apk', |
360 ], | 361 ], |
361 }], | 362 }], |
362 ['OS=="android" or OS=="linux"', { | 363 ['OS=="android" or OS=="linux"', { |
363 'dependencies': [ | 364 'dependencies': [ |
364 '../net/net.gyp:disk_cache_memory_test', | 365 '../net/net.gyp:disk_cache_memory_test', |
365 ], | 366 ], |
366 }], | 367 }], |
367 ['chromeos==1', { | 368 ['chromeos==1', { |
368 'dependencies': [ | 369 'dependencies': [ |
369 '../chromeos/chromeos.gyp:chromeos_unittests', | 370 '../chromeos/chromeos.gyp:chromeos_unittests', |
(...skipping 345 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
715 'dependencies': [ | 716 'dependencies': [ |
716 # TODO(GYP): All of these targets need to be ported over. | 717 # TODO(GYP): All of these targets need to be ported over. |
717 '../components/components.gyp:policy_win64', | 718 '../components/components.gyp:policy_win64', |
718 ] | 719 ] |
719 }], | 720 }], |
720 ], | 721 ], |
721 }, | 722 }, |
722 ] | 723 ] |
723 } | 724 } |
724 | 725 |
OLD | NEW |