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 332 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
343 "//third_party/pywebsocket/", | 343 "//third_party/pywebsocket/", |
344 "//third_party/tlslite/", | 344 "//third_party/tlslite/", |
345 "//third_party/zlib/google/test/data/", | 345 "//third_party/zlib/google/test/data/", |
346 "//tools/metrics/histograms/histograms.xml", | 346 "//tools/metrics/histograms/histograms.xml", |
347 "$root_out_dir/pyproto/google/", | 347 "$root_out_dir/pyproto/google/", |
348 "$root_out_dir/ui_test.pak", | 348 "$root_out_dir/ui_test.pak", |
349 ] | 349 ] |
350 if (is_linux || is_win) { | 350 if (is_linux || is_win) { |
351 data += [ | 351 data += [ |
352 "$root_out_dir/chrome_100_percent.pak", | 352 "$root_out_dir/chrome_100_percent.pak", |
353 "$root_out_dir/chrome_material_100_percent.pak", | |
354 "$root_out_dir/chrome_200_percent.pak", | 353 "$root_out_dir/chrome_200_percent.pak", |
355 "$root_out_dir/chrome_material_200_percent.pak", | |
356 "$root_out_dir/locales/en-US.pak", | 354 "$root_out_dir/locales/en-US.pak", |
357 "$root_out_dir/locales/fr.pak", | 355 "$root_out_dir/locales/fr.pak", |
358 ] | 356 ] |
359 } | 357 } |
360 if (is_linux) { | 358 if (is_linux) { |
361 data += [ "$root_out_dir/libppapi_tests.so" ] | 359 data += [ "$root_out_dir/libppapi_tests.so" ] |
362 } | 360 } |
363 if (!is_mac) { | 361 if (!is_mac) { |
364 data_deps += [ "//chrome:packed_extra_resources" ] | 362 data_deps += [ "//chrome:packed_extra_resources" ] |
365 } | 363 } |
(...skipping 2025 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
2391 if (is_android) { | 2389 if (is_android) { |
2392 android_library("unit_tests_java") { | 2390 android_library("unit_tests_java") { |
2393 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2391 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
2394 deps = [ | 2392 deps = [ |
2395 "//base:base_java", | 2393 "//base:base_java", |
2396 "//chrome/android:chrome_java", | 2394 "//chrome/android:chrome_java", |
2397 "//content/public/android:content_java", | 2395 "//content/public/android:content_java", |
2398 ] | 2396 ] |
2399 } | 2397 } |
2400 } | 2398 } |
OLD | NEW |