| 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 878 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 889 "$root_out_dir/chrome_200_percent.pak", | 889 "$root_out_dir/chrome_200_percent.pak", |
| 890 "$root_out_dir/remoting/unittests/", | 890 "$root_out_dir/remoting/unittests/", |
| 891 "$root_out_dir/resources/extension/", | 891 "$root_out_dir/resources/extension/", |
| 892 "$root_out_dir/test_case.html", | 892 "$root_out_dir/test_case.html", |
| 893 "$root_out_dir/test_case.html.mock-http-headers", | 893 "$root_out_dir/test_case.html.mock-http-headers", |
| 894 "$root_out_dir/test_data/", | 894 "$root_out_dir/test_data/", |
| 895 "$root_out_dir/test_page.css", | 895 "$root_out_dir/test_page.css", |
| 896 "$root_out_dir/test_page.css.mock-http-headers", | 896 "$root_out_dir/test_page.css.mock-http-headers", |
| 897 "$root_out_dir/test_url_loader_data/", | 897 "$root_out_dir/test_url_loader_data/", |
| 898 ] | 898 ] |
| 899 if (is_mac) { |
| 900 data_deps += [ |
| 901 "//chrome:repack_chrome_material_100_percent", |
| 902 "//chrome:repack_chrome_material_200_percent", |
| 903 ] |
| 904 } |
| 899 if (is_win) { | 905 if (is_win) { |
| 900 data += [ "$root_out_dir/chrome_200_percent.pak" ] | 906 data += [ "$root_out_dir/chrome_200_percent.pak" ] |
| 901 } | 907 } |
| 902 if (is_mac) { | 908 if (is_mac) { |
| 903 data += [ | 909 data += [ |
| 904 "$root_out_dir/chrome_material_100_percent.pak", | 910 "$root_out_dir/chrome_material_100_percent.pak", |
| 905 "$root_out_dir/chrome_material_200_percent.pak", | 911 "$root_out_dir/chrome_material_200_percent.pak", |
| 906 ] | 912 ] |
| 907 } | 913 } |
| 908 | 914 |
| (...skipping 1476 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2385 if (is_android) { | 2391 if (is_android) { |
| 2386 android_library("unit_tests_java") { | 2392 android_library("unit_tests_java") { |
| 2387 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2393 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2388 deps = [ | 2394 deps = [ |
| 2389 "//base:base_java", | 2395 "//base:base_java", |
| 2390 "//chrome/android:chrome_java", | 2396 "//chrome/android:chrome_java", |
| 2391 "//content/public/android:content_java", | 2397 "//content/public/android:content_java", |
| 2392 ] | 2398 ] |
| 2393 } | 2399 } |
| 2394 } | 2400 } |
| OLD | NEW |