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

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

Issue 2038593002: [Mac/GN] When using debug_devtools=true, bundle the inspector resources using a symlink. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 years, 6 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
« chrome/BUILD.gn ('K') | « chrome/BUILD.gn ('k') | no next file » | 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 837 matching lines...) Expand 10 before | Expand all | Expand 10 after
848 ] 848 ]
849 sources += 849 sources +=
850 rebase_path(chrome_tests_gypi_values.chrome_browser_tests_sources, 850 rebase_path(chrome_tests_gypi_values.chrome_browser_tests_sources,
851 ".", 851 ".",
852 "//chrome") 852 "//chrome")
853 sources += rebase_path( 853 sources += rebase_path(
854 chrome_tests_gypi_values.chrome_browser_extensions_test_support_sour ces, 854 chrome_tests_gypi_values.chrome_browser_extensions_test_support_sour ces,
855 ".", 855 ".",
856 "//chrome") 856 "//chrome")
857 857
858 configs += [ "//build/config:precompiled_headers" ] 858 configs += [
859 "//build/config:precompiled_headers",
860 "//third_party/WebKit/public:debug_devtools",
861 ]
859 862
860 data = [ 863 data = [
861 "data/", 864 "data/",
862 "//chrome/browser/policy/test/asn1der.py", 865 "//chrome/browser/policy/test/asn1der.py",
863 "//chrome/browser/policy/test/policy_testserver.py", 866 "//chrome/browser/policy/test/policy_testserver.py",
864 "//chrome/common/extensions/docs/examples/apps/calculator/", 867 "//chrome/common/extensions/docs/examples/apps/calculator/",
865 "//chrome/third_party/mock4js/", 868 "//chrome/third_party/mock4js/",
866 "//content/test/data/", 869 "//content/test/data/",
867 "//google_apis/test/", 870 "//google_apis/test/",
868 "//media/test/data/", 871 "//media/test/data/",
(...skipping 168 matching lines...) Expand 10 before | Expand all | Expand 10 after
1037 configs += 1040 configs +=
1038 [ "//build/config/win:default_large_module_incremental_linking" ] 1041 [ "//build/config/win:default_large_module_incremental_linking" ]
1039 } 1042 }
1040 if (is_linux) { 1043 if (is_linux) {
1041 data_deps += [ 1044 data_deps += [
1042 "//components/nacl/loader:nacl_helper", 1045 "//components/nacl/loader:nacl_helper",
1043 "//components/nacl/loader:helper_nonsfi", 1046 "//components/nacl/loader:helper_nonsfi",
1044 ] 1047 ]
1045 } 1048 }
1046 } 1049 }
1047 if (debug_devtools) {
1048 defines += [ "DEBUG_DEVTOOLS=1" ]
Nico 2016/06/02 18:03:46 why is this going away?
Robert Sesek 2016/06/02 18:20:08 I switched to using the config, which all other pl
1049 }
1050 if (use_ash) { 1050 if (use_ash) {
1051 sources += 1051 sources +=
1052 rebase_path(chrome_tests_gypi_values.chrome_browser_tests_ash_sources, 1052 rebase_path(chrome_tests_gypi_values.chrome_browser_tests_ash_sources,
1053 ".", 1053 ".",
1054 "//chrome") 1054 "//chrome")
1055 deps += [ "//ash:test_support" ] 1055 deps += [ "//ash:test_support" ]
1056 1056
1057 if (enable_app_list) { 1057 if (enable_app_list) {
1058 deps += [ ":test_support_applist_ash" ] 1058 deps += [ ":test_support_applist_ash" ]
1059 } 1059 }
(...skipping 1324 matching lines...) Expand 10 before | Expand all | Expand 10 after
2384 if (is_android) { 2384 if (is_android) {
2385 android_library("unit_tests_java") { 2385 android_library("unit_tests_java") {
2386 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ] 2386 java_files = [ "android/unit_tests_apk/src/org/chromium/chrome/unit_tests_ap k/ChromeNativeTestApplication.java" ]
2387 deps = [ 2387 deps = [
2388 "//base:base_java", 2388 "//base:base_java",
2389 "//chrome/android:chrome_java", 2389 "//chrome/android:chrome_java",
2390 "//content/public/android:content_java", 2390 "//content/public/android:content_java",
2391 ] 2391 ]
2392 } 2392 }
2393 } 2393 }
OLDNEW
« chrome/BUILD.gn ('K') | « chrome/BUILD.gn ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698