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

Unified Diff: blimp/net/BUILD.gn

Issue 1930303002: Simplify GN target names for //blimp (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix blimp_shell Created 4 years, 8 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 | « blimp/engine/engine-manifest.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: blimp/net/BUILD.gn
diff --git a/blimp/net/BUILD.gn b/blimp/net/BUILD.gn
index 57c01e5359dcf57ce7dc337f0262d24361267384..0b722be06e7d92c29ee3f5e29f086b7abc1909bd 100644
--- a/blimp/net/BUILD.gn
+++ b/blimp/net/BUILD.gn
@@ -2,7 +2,8 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-component("blimp_net") {
+component("net") {
+ output_name = "blimp_net"
sources = [
"blimp_connection.cc",
"blimp_connection.h",
@@ -66,7 +67,7 @@ component("blimp_net") {
deps = [
"//base",
- "//blimp/common:blimp_common",
+ "//blimp/common",
"//blimp/common/proto",
"//net",
"//third_party/WebKit/public:blink_headers",
@@ -84,7 +85,7 @@ source_set("test_support") {
]
deps = [
- ":blimp_net",
+ ":net",
"//blimp/common/proto",
"//net:test_support",
"//testing/gmock",
@@ -116,12 +117,12 @@ source_set("unit_tests") {
]
deps = [
- ":blimp_net",
+ ":net",
":test_support",
"//base",
"//base/test:run_all_unittests",
"//base/test:test_support",
- "//blimp/common:blimp_common",
+ "//blimp/common",
"//blimp/common/proto",
"//net:test_support",
"//testing/gmock",
« no previous file with comments | « blimp/engine/engine-manifest.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698