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

Unified Diff: chrome/browser/BUILD.gn

Issue 2143253002: Convert test_support source sets to static libs (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Android Created 4 years, 5 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « chrome/app/BUILD.gn ('k') | chrome/browser/media/router/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/BUILD.gn
diff --git a/chrome/browser/BUILD.gn b/chrome/browser/BUILD.gn
index 76d4fabfbb76330378e9d090c7d3df4c62284364..ef1dd4510e4dd42ef25e773f0f6e57fc4273d9c7 100644
--- a/chrome/browser/BUILD.gn
+++ b/chrome/browser/BUILD.gn
@@ -991,7 +991,7 @@ if (android_java_ui) {
}
if (is_win) {
- source_set("chrome_process_finder") {
+ static_library("chrome_process_finder") {
sources = [
"win/chrome_process_finder.cc",
"win/chrome_process_finder.h",
@@ -1325,7 +1325,7 @@ static_library("test_support") {
}
# In GYP this is part of test_support_ui.
-source_set("test_support_ui") {
+static_library("test_support_ui") {
testonly = true
# Always include this via the main test support UI target.
@@ -1352,7 +1352,7 @@ source_set("test_support_ui") {
}
if (enable_rlz_support) {
- source_set("rlz") {
+ static_library("rlz") {
sources =
rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome")
deps = [
@@ -1368,7 +1368,7 @@ if (enable_rlz_support) {
if (enable_pepper_cdms) {
# These constants are separated so that test binaries can use them without
# linking all of the test support.
- source_set("pepper_cdm_test_constants") {
+ static_library("pepper_cdm_test_constants") {
testonly = true
visibility = [ "//chrome/*" ]
sources = [
« no previous file with comments | « chrome/app/BUILD.gn ('k') | chrome/browser/media/router/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698