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

Unified Diff: services/shell/public/cpp/BUILD.gn

Issue 2151013002: Convert some GN test support targets to static libs. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: remoting 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 | « services/shell/background/tests/BUILD.gn ('k') | services/ui/public/cpp/tests/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: services/shell/public/cpp/BUILD.gn
diff --git a/services/shell/public/cpp/BUILD.gn b/services/shell/public/cpp/BUILD.gn
index 0d8a088a803c0486400e94220d8745e517c03aaf..f3a9490c4d3410a94a83404916a09c0bbdf53413 100644
--- a/services/shell/public/cpp/BUILD.gn
+++ b/services/shell/public/cpp/BUILD.gn
@@ -3,14 +3,14 @@
# found in the LICENSE file.
# GYP version: mojo/mojo_base.gyp:mojo_application_base
-source_set("cpp") {
+group("cpp") {
public_deps = [
":sources",
]
}
# TODO(rockot): Rename this to "cpp".
-source_set("sources") {
+static_library("sources") {
sources = [
"application_runner.h",
"capabilities.h",
@@ -55,7 +55,7 @@ source_set("sources") {
}
if (!is_ios) {
- source_set("application_support") {
+ static_library("application_support") {
sources = [
"lib/init_commandline.cc",
"lib/initialize_base_and_icu.cc",
@@ -68,7 +68,7 @@ if (!is_ios) {
]
}
- source_set("service_test_support") {
+ static_library("service_test_support") {
testonly = true
sources = [
"lib/service_test.cc",
« no previous file with comments | « services/shell/background/tests/BUILD.gn ('k') | services/ui/public/cpp/tests/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698