| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/compiler/compiler.gni") | 6 import("//build/config/compiler/compiler.gni") |
| 7 import("//build/config/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//chrome/chrome_tests.gni") | 10 import("//chrome/chrome_tests.gni") |
| (...skipping 883 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 894 | 894 |
| 895 data_deps = [] | 895 data_deps = [] |
| 896 | 896 |
| 897 data = [] | 897 data = [] |
| 898 | 898 |
| 899 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] | 899 defines = [ "HAS_OUT_OF_PROC_TEST_RUNNER" ] |
| 900 | 900 |
| 901 if (is_win) { | 901 if (is_win) { |
| 902 data += [ "$root_out_dir/chrome_200_percent.pak" ] | 902 data += [ "$root_out_dir/chrome_200_percent.pak" ] |
| 903 } | 903 } |
| 904 if (is_mac) { | |
| 905 data += [ | |
| 906 "$root_out_dir/chrome_material_100_percent.pak", | |
| 907 "$root_out_dir/chrome_material_200_percent.pak", | |
| 908 ] | |
| 909 } | |
| 910 if (is_chromeos) { | 904 if (is_chromeos) { |
| 911 data += [ | 905 data += [ |
| 912 # TODO(GYP): figure out which of these things are | 906 # TODO(GYP): figure out which of these things are |
| 913 # actually needed and also which should be pulled in via | 907 # actually needed and also which should be pulled in via |
| 914 # data or data_deps and through which dependencies. | 908 # data or data_deps and through which dependencies. |
| 915 "//chrome/browser/chromeos/login/test/https_forwarder.py", | 909 "//chrome/browser/chromeos/login/test/https_forwarder.py", |
| 916 "//chrome/browser/resources/chromeos/wallpaper_manager/", | 910 "//chrome/browser/resources/chromeos/wallpaper_manager/", |
| 917 "//chromeos/test/data/", | 911 "//chromeos/test/data/", |
| 918 "//components/chrome_apps/webstore_widget/cws_widget/", | 912 "//components/chrome_apps/webstore_widget/cws_widget/", |
| 919 "//ui/file_manager/file_manager/", | 913 "//ui/file_manager/file_manager/", |
| (...skipping 1564 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2484 if (is_android) { | 2478 if (is_android) { |
| 2485 android_library("unit_tests_java") { | 2479 android_library("unit_tests_java") { |
| 2486 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2480 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2487 deps = [ | 2481 deps = [ |
| 2488 "//base:base_java", | 2482 "//base:base_java", |
| 2489 "//chrome/android:chrome_java", | 2483 "//chrome/android:chrome_java", |
| 2490 "//content/public/android:content_java", | 2484 "//content/public/android:content_java", |
| 2491 ] | 2485 ] |
| 2492 } | 2486 } |
| 2493 } | 2487 } |
| OLD | NEW |