Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1893)

Side by Side Diff: chrome/test/BUILD.gn

Issue 1945893002: Split generated libraries out of //build/linux (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | device/udev_linux/BUILD.gn » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 1298 matching lines...) Expand 10 before | Expand all | Expand 10 after
1309 "../browser/service_process/service_process_control_browsertest.cc", 1309 "../browser/service_process/service_process_control_browsertest.cc",
1310 "../browser/ui/webui/print_preview/print_preview_ui_browsertest.cc", 1310 "../browser/ui/webui/print_preview/print_preview_ui_browsertest.cc",
1311 "data/webui/print_preview.cc", 1311 "data/webui/print_preview.cc",
1312 "data/webui/print_preview.h", 1312 "data/webui/print_preview.h",
1313 ] 1313 ]
1314 } 1314 }
1315 if (enable_mdns) { 1315 if (enable_mdns) {
1316 sources += [ "../browser/ui/webui/local_discovery/local_discovery_ui_brows ertest.cc" ] 1316 sources += [ "../browser/ui/webui/local_discovery/local_discovery_ui_brows ertest.cc" ]
1317 } 1317 }
1318 if (use_brlapi) { 1318 if (use_brlapi) {
1319 deps += [ "//build/linux:libbrlapi" ] 1319 deps += [ "//build/linux/libbrlapi" ]
1320 } else { 1320 } else {
1321 sources -= [ "../browser/extensions/api/braille_display_private/braille_di splay_private_apitest.cc" ] 1321 sources -= [ "../browser/extensions/api/braille_display_private/braille_di splay_private_apitest.cc" ]
1322 } 1322 }
1323 if (is_chrome_branded) { 1323 if (is_chrome_branded) {
1324 sources -= [ 1324 sources -= [
1325 # These tests depend on single process mode, which is disabled in 1325 # These tests depend on single process mode, which is disabled in
1326 # official builds. 1326 # official builds.
1327 "../renderer/safe_browsing/phishing_classifier_browsertest.cc", 1327 "../renderer/safe_browsing/phishing_classifier_browsertest.cc",
1328 "../renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc", 1328 "../renderer/safe_browsing/phishing_classifier_delegate_browsertest.cc",
1329 ] 1329 ]
(...skipping 500 matching lines...) Expand 10 before | Expand all | Expand 10 after
1830 } 1830 }
1831 if (!is_android && !is_ios && !is_chromeos) { 1831 if (!is_android && !is_ios && !is_chromeos) {
1832 sources += [ 1832 sources += [
1833 "../browser/net/disk_cache_dir_policy_handler_unittest.cc", 1833 "../browser/net/disk_cache_dir_policy_handler_unittest.cc",
1834 "//chrome/browser/profiles/profile_list_desktop_unittest.cc", 1834 "//chrome/browser/profiles/profile_list_desktop_unittest.cc",
1835 "//chrome/browser/profiles/profile_statistics_unittest.cc", 1835 "//chrome/browser/profiles/profile_statistics_unittest.cc",
1836 ] 1836 ]
1837 } 1837 }
1838 if (!is_chromeos && !use_ozone && is_linux) { 1838 if (!is_chromeos && !use_ozone && is_linux) {
1839 deps += [ 1839 deps += [
1840 "//build/linux:gio", 1840 "//build/linux/libgio",
1841 "//chrome/browser/ui/libgtk2ui", 1841 "//chrome/browser/ui/libgtk2ui",
1842 ] 1842 ]
1843 } 1843 }
1844 1844
1845 if (enable_task_manager) { 1845 if (enable_task_manager) {
1846 sources += rebase_path( 1846 sources += rebase_path(
1847 chrome_tests_unit_gypi_values.chrome_unit_tests_task_manager_sources , 1847 chrome_tests_unit_gypi_values.chrome_unit_tests_task_manager_sources ,
1848 ".", 1848 ".",
1849 "//chrome") 1849 "//chrome")
1850 } 1850 }
(...skipping 425 matching lines...) Expand 10 before | Expand all | Expand 10 after
2276 if (is_android) { 2276 if (is_android) {
2277 android_library("unit_tests_java") { 2277 android_library("unit_tests_java") {
2278 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] 2278 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ]
2279 deps = [ 2279 deps = [
2280 "//base:base_java", 2280 "//base:base_java",
2281 "//chrome/android:chrome_java", 2281 "//chrome/android:chrome_java",
2282 "//content/public/android:content_java", 2282 "//content/public/android:content_java",
2283 ] 2283 ]
2284 } 2284 }
2285 } 2285 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/BUILD.gn ('k') | device/udev_linux/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698