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

Unified Diff: url/ipc/BUILD.gn

Issue 1722773002: Mustash: Move GURL ParamTraits to url/ipc (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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
Index: url/ipc/BUILD.gn
diff --git a/url/ipc/BUILD.gn b/url/ipc/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..6daa0a87f933cd1a74241cc3d2ca9c9691bda623
--- /dev/null
+++ b/url/ipc/BUILD.gn
@@ -0,0 +1,24 @@
+# Copyright (c) 2016 The Chromium Authors. All rights reserved.
+# Use of this source code is governed by a BSD-style license that can be
+# found in the LICENSE file.
+
+import("//testing/test.gni")
+
+source_set("url_ipc") {
+ sources = [
+ "url_param_traits.cc",
+ "url_param_traits.h",
+ ]
brettw 2016/02/22 22:07:15 This should depend on "//url" and "//ipc",
Mark Dittmer 2016/02/23 15:13:54 Done.
+}
+
+test("url_ipc_unittests") {
+ sources = [
+ "url_param_traits_unittest.cc",
brettw 2016/02/22 22:43:40 Actually, I think this can be compiled in to url_u
Mark Dittmer 2016/02/23 15:13:54 Done.
+ ]
+
+ deps = [
+ "//base",
+ "//testing/gtest",
+ "//url:url",
brettw 2016/02/22 22:07:15 This can just be "//url",
Mark Dittmer 2016/02/23 15:13:54 N/A with removal.
+ ]
+}
« no previous file with comments | « url/BUILD.gn ('k') | url/ipc/url_param_traits.h » ('j') | url/ipc/url_param_traits.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698