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

Unified Diff: mojo/common/BUILD.gn

Issue 975083002: mojo/common: Decouple GURL dependency (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Landing Created 5 years, 10 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 | « media/mojo/services/mojo_cdm_service.cc ('k') | mojo/common/common_type_converters.h » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: mojo/common/BUILD.gn
diff --git a/mojo/common/BUILD.gn b/mojo/common/BUILD.gn
index ad01c318bb875d2428d6508c7cf2c4c4dd622fd4..80446980af906639ba2c1ff81abe4021b96e0512 100644
--- a/mojo/common/BUILD.gn
+++ b/mojo/common/BUILD.gn
@@ -4,8 +4,15 @@
import("//testing/test.gni")
+group("common") {
+ deps = [
+ ":common_base",
+ ":url_type_converters",
+ ]
+}
+
# GYP version: mojo/mojo_base.gyp:mojo_common_lib
-component("common") {
+component("common_base") {
output_name = "mojo_common_lib"
sources = [
@@ -28,6 +35,22 @@ component("common") {
"//base",
"//base/third_party/dynamic_annotations",
"//third_party/mojo/src/mojo/public/c/system:for_component",
+ ]
+}
+
+# GYP version: mojo/mojo_base.gyp:mojo_url_type_converters
+source_set("url_type_converters") {
+ sources = [
+ "url_type_converters.cc",
+ "url_type_converters.h",
+ ]
+
+ include_dirs = [ "//third_party/mojo/src/" ]
+
+ deps = [
+ ":common_base",
+ "//base",
+ "//base/third_party/dynamic_annotations",
"//url",
]
}
« no previous file with comments | « media/mojo/services/mojo_cdm_service.cc ('k') | mojo/common/common_type_converters.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698