| 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 1337 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1348 | 1348 |
| 1349 if (use_aura) { | 1349 if (use_aura) { |
| 1350 sources += [ | 1350 sources += [ |
| 1351 "base/mash_browser_tests_main.cc", | 1351 "base/mash_browser_tests_main.cc", |
| 1352 "base/mash_browser_tests_main.h", | 1352 "base/mash_browser_tests_main.h", |
| 1353 "base/mojo_test_connector.cc", | 1353 "base/mojo_test_connector.cc", |
| 1354 "base/mojo_test_connector.h", | 1354 "base/mojo_test_connector.h", |
| 1355 ] | 1355 ] |
| 1356 | 1356 |
| 1357 deps += [ | 1357 deps += [ |
| 1358 "//mojo/shell/background:lib", | 1358 "//services/shell/background:lib", |
| 1359 "//mojo/shell/background/tests:test_support", | 1359 "//services/shell/background/tests:test_support", |
| 1360 ] | 1360 ] |
| 1361 | 1361 |
| 1362 data_deps += [ | 1362 data_deps += [ |
| 1363 "//chrome/app:mojo_manifests", | 1363 "//chrome/app:mojo_manifests", |
| 1364 "//mash/session", | 1364 "//mash/session", |
| 1365 ] | 1365 ] |
| 1366 | 1366 |
| 1367 defines += [ "MOJO_SHELL_CLIENT" ] | 1367 defines += [ "MOJO_SHELL_CLIENT" ] |
| 1368 | 1368 |
| 1369 if (enable_wifi_display) { | 1369 if (enable_wifi_display) { |
| (...skipping 922 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 2292 if (is_android) { | 2292 if (is_android) { |
| 2293 android_library("unit_tests_java") { | 2293 android_library("unit_tests_java") { |
| 2294 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] | 2294 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap
k/ChromeNativeTestApplication.java" ] |
| 2295 deps = [ | 2295 deps = [ |
| 2296 "//base:base_java", | 2296 "//base:base_java", |
| 2297 "//chrome/android:chrome_java", | 2297 "//chrome/android:chrome_java", |
| 2298 "//content/public/android:content_java", | 2298 "//content/public/android:content_java", |
| 2299 ] | 2299 ] |
| 2300 } | 2300 } |
| 2301 } | 2301 } |
| OLD | NEW |