| 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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 291 test("interactive_ui_tests") { | 291 test("interactive_ui_tests") { |
| 292 sources = | 292 sources = |
| 293 rebase_path(chrome_tests_gypi_values.chrome_interactive_ui_test_sources, | 293 rebase_path(chrome_tests_gypi_values.chrome_interactive_ui_test_sources, |
| 294 ".", | 294 ".", |
| 295 "//chrome") | 295 "//chrome") |
| 296 | 296 |
| 297 configs += [ "//build/config:precompiled_headers" ] | 297 configs += [ "//build/config:precompiled_headers" ] |
| 298 | 298 |
| 299 data = [ | 299 data = [ |
| 300 "data/", | 300 "data/", |
| 301 "//content/test/data/", |
| 301 "//net/data/ssl/certificates/", | 302 "//net/data/ssl/certificates/", |
| 302 "//net/tools/testserver/", | 303 "//net/tools/testserver/", |
| 303 "//ppapi/tests/test_case.html", | 304 "//ppapi/tests/test_case.html", |
| 304 "//ppapi/tests/test_case.html.mock-http-headers", | 305 "//ppapi/tests/test_case.html.mock-http-headers", |
| 305 "//ppapi/tests/test_page.css", | 306 "//ppapi/tests/test_page.css", |
| 306 "//ppapi/tests/test_page.css.mock-http-headers", | 307 "//ppapi/tests/test_page.css.mock-http-headers", |
| 307 "//third_party/pyftpdlib/", | 308 "//third_party/pyftpdlib/", |
| 308 "//third_party/pywebsocket/", | 309 "//third_party/pywebsocket/", |
| 309 "//third_party/tlslite/", | 310 "//third_party/tlslite/", |
| 310 "//third_party/zlib/google/test/data/", | 311 "//third_party/zlib/google/test/data/", |
| (...skipping 1951 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2262 if (is_android) { | 2263 if (is_android) { |
| 2263 android_library("unit_tests_java") { | 2264 android_library("unit_tests_java") { |
| 2264 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2265 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2265 deps = [ | 2266 deps = [ |
| 2266 "//base:base_java", | 2267 "//base:base_java", |
| 2267 "//chrome/android:chrome_java", | 2268 "//chrome/android:chrome_java", |
| 2268 "//content/public/android:content_java", | 2269 "//content/public/android:content_java", |
| 2269 ] | 2270 ] |
| 2270 } | 2271 } |
| 2271 } | 2272 } |
| OLD | NEW |