| 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 277 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 288 '../gpu/tools/tools.gyp:compositor_model_bench', | 288 '../gpu/tools/tools.gyp:compositor_model_bench', |
| 289 ], | 289 ], |
| 290 }], | 290 }], |
| 291 ], | 291 ], |
| 292 }], | 292 }], |
| 293 ['OS=="android"', { | 293 ['OS=="android"', { |
| 294 'dependencies': [ | 294 'dependencies': [ |
| 295 '../base/base.gyp:chromium_android_linker', | 295 '../base/base.gyp:chromium_android_linker', |
| 296 '../breakpad/breakpad.gyp:dump_syms', | 296 '../breakpad/breakpad.gyp:dump_syms', |
| 297 '../build/android/rezip.gyp:rezip_apk_jar', | 297 '../build/android/rezip.gyp:rezip_apk_jar', |
| 298 '../chrome/chrome.gyp:chrome_public_apk', |
| 299 '../chrome/chrome.gyp:chrome_public_test_apk', |
| 298 '../chrome/chrome.gyp:chrome_shell_apk', | 300 '../chrome/chrome.gyp:chrome_shell_apk', |
| 299 '../chrome/chrome.gyp:chromedriver_webview_shell_apk', | 301 '../chrome/chrome.gyp:chromedriver_webview_shell_apk', |
| 300 #"//clank" TODO(GYP) - conditional somehow? | 302 #"//clank" TODO(GYP) - conditional somehow? |
| 301 '../tools/imagediff/image_diff.gyp:image_diff#host', | 303 '../tools/imagediff/image_diff.gyp:image_diff#host', |
| 302 '../tools/telemetry/telemetry.gyp:bitmaptools#host', | 304 '../tools/telemetry/telemetry.gyp:bitmaptools#host', |
| 303 | 305 |
| 304 # TODO(GYP): Remove these when the components_unittests work. | 306 # TODO(GYP): Remove these when the components_unittests work. |
| 305 #"//components/history/core/test:test", | 307 #"//components/history/core/test:test", |
| 306 #"//components/policy:policy_component_test_support", | 308 #"//components/policy:policy_component_test_support", |
| 307 #"//components/policy:test_support", | 309 #"//components/policy:test_support", |
| (...skipping 363 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 671 'dependencies': [ | 673 'dependencies': [ |
| 672 # TODO(GYP): All of these targets need to be ported over. | 674 # TODO(GYP): All of these targets need to be ported over. |
| 673 '../components/components.gyp:policy_win64', | 675 '../components/components.gyp:policy_win64', |
| 674 ] | 676 ] |
| 675 }], | 677 }], |
| 676 ], | 678 ], |
| 677 }, | 679 }, |
| 678 ] | 680 ] |
| 679 } | 681 } |
| 680 | 682 |
| OLD | NEW |