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

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

Issue 1535863002: Only set -rpath=$ORIGIN in component builds by default. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@2564
Patch Set: Created 5 years 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 | « build/config/gcc/BUILD.gn ('k') | mojo/common/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 1003 matching lines...) Expand 10 before | Expand all | Expand 10 after
1014 ".", 1014 ".",
1015 "//chrome") 1015 "//chrome")
1016 deps += [ "//ui/views" ] 1016 deps += [ "//ui/views" ]
1017 if (!is_mac) { 1017 if (!is_mac) {
1018 sources += rebase_path( 1018 sources += rebase_path(
1019 chrome_tests_gypi_values.chrome_browser_tests_views_non_mac_sour ces, 1019 chrome_tests_gypi_values.chrome_browser_tests_views_non_mac_sour ces,
1020 ".", 1020 ".",
1021 "//chrome") 1021 "//chrome")
1022 } 1022 }
1023 } 1023 }
1024
1025 if (is_linux && !is_component_build) {
1026 # Set rpath to find the CDM adapter even in a non-component build.
1027 configs += [ "//build/config/gcc:rpath_for_built_shared_libraries" ]
1028 }
1029
1024 if (is_chromeos) { 1030 if (is_chromeos) {
1025 sources += rebase_path( 1031 sources += rebase_path(
1026 chrome_tests_gypi_values.chrome_browser_tests_chromeos_sources, 1032 chrome_tests_gypi_values.chrome_browser_tests_chromeos_sources,
1027 ".", 1033 ".",
1028 "//chrome") 1034 "//chrome")
1029 sources -= [ 1035 sources -= [
1030 "../../apps/load_and_launch_browsertest.cc", 1036 "../../apps/load_and_launch_browsertest.cc",
1031 "../browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc" , 1037 "../browser/printing/cloud_print/test/cloud_print_policy_browsertest.cc" ,
1032 "../browser/printing/cloud_print/test/cloud_print_proxy_process_browsert est.cc", 1038 "../browser/printing/cloud_print/test/cloud_print_proxy_process_browsert est.cc",
1033 1039
(...skipping 1168 matching lines...) Expand 10 before | Expand all | Expand 10 after
2202 if (is_android) { 2208 if (is_android) {
2203 android_library("unit_tests_java") { 2209 android_library("unit_tests_java") {
2204 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src" 2210 DEPRECATED_java_in_dir = "//chrome/test/android/unit_tests_apk/src"
2205 deps = [ 2211 deps = [
2206 "//base:base_java", 2212 "//base:base_java",
2207 "//chrome/android:chrome_java", 2213 "//chrome/android:chrome_java",
2208 "//content/public/android:content_java", 2214 "//content/public/android:content_java",
2209 ] 2215 ]
2210 } 2216 }
2211 } 2217 }
OLDNEW
« no previous file with comments | « build/config/gcc/BUILD.gn ('k') | mojo/common/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698