| 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 1642 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1653 "//google_apis", | 1653 "//google_apis", |
| 1654 "//skia", | 1654 "//skia", |
| 1655 "//third_party/cacheinvalidation", | 1655 "//third_party/cacheinvalidation", |
| 1656 | 1656 |
| 1657 # Unit tests should be independent of the CLD2 access mechanism, just use | 1657 # Unit tests should be independent of the CLD2 access mechanism, just use |
| 1658 # static for simplicity. | 1658 # static for simplicity. |
| 1659 "//third_party/cld_2:cld2_static", | 1659 "//third_party/cld_2:cld2_static", |
| 1660 "//third_party/icu", | 1660 "//third_party/icu", |
| 1661 "//third_party/libxml", | 1661 "//third_party/libxml", |
| 1662 "//ui/base:test_support", | 1662 "//ui/base:test_support", |
| 1663 "//ui/display:test_support", |
| 1663 "//ui/gfx:test_support", | 1664 "//ui/gfx:test_support", |
| 1664 "//ui/resources", | 1665 "//ui/resources", |
| 1665 ] | 1666 ] |
| 1666 data_deps = [] | 1667 data_deps = [] |
| 1667 | 1668 |
| 1668 # TODO(GYP) Windows stuff | 1669 # TODO(GYP) Windows stuff |
| 1669 # ['incremental_chrome_dll==1', { | 1670 # ['incremental_chrome_dll==1', { |
| 1670 # 'UseLibraryDependencyInputs': "true", | 1671 # 'UseLibraryDependencyInputs': "true", |
| 1671 | 1672 |
| 1672 if (!is_ios) { | 1673 if (!is_ios) { |
| (...skipping 655 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2328 if (is_android) { | 2329 if (is_android) { |
| 2329 android_library("unit_tests_java") { | 2330 android_library("unit_tests_java") { |
| 2330 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2331 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2331 deps = [ | 2332 deps = [ |
| 2332 "//base:base_java", | 2333 "//base:base_java", |
| 2333 "//chrome/android:chrome_java", | 2334 "//chrome/android:chrome_java", |
| 2334 "//content/public/android:content_java", | 2335 "//content/public/android:content_java", |
| 2335 ] | 2336 ] |
| 2336 } | 2337 } |
| 2337 } | 2338 } |
| OLD | NEW |