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

Unified Diff: components/open_from_clipboard/BUILD.gn

Issue 2782823003: Rewrite implementation of ClipboardRecentContent in Objective C. (Closed)
Patch Set: address comments Created 3 years, 9 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: components/open_from_clipboard/BUILD.gn
diff --git a/components/open_from_clipboard/BUILD.gn b/components/open_from_clipboard/BUILD.gn
index fe46837a69abecb892c0d7406bb953cc30035c1a..3049faa75c5dfb6d9ead5990927d027c05ff4f71 100644
--- a/components/open_from_clipboard/BUILD.gn
+++ b/components/open_from_clipboard/BUILD.gn
@@ -12,8 +12,26 @@ static_library("open_from_clipboard") {
deps = [
"//base",
+ "//net",
"//url",
]
+
+ public_deps = [
+ ":open_from_clipboard_ios_impl",
sdefresne 2017/04/03 09:27:16 This should be "deps", not "public_deps" (as no co
lody 2017/04/04 13:42:17 Done.
+ ]
+}
+
+static_library("open_from_clipboard_ios_impl") {
sdefresne 2017/04/03 09:27:16 This can be a source_set.
lody 2017/04/04 13:42:18 Done.
+ sources = [
+ "clipboard_recent_content_ios_impl.h",
+ "clipboard_recent_content_ios_impl.mm",
+ ]
+
+ deps = [
+ "//base",
+ ]
+
+ configs += [ "//build/config/compiler:enable_arc" ]
sdefresne 2017/04/03 09:27:16 You'll need to put this configs behind "if (is_ios
lody 2017/04/04 13:42:17 Done.
}
static_library("test_support") {
« no previous file with comments | « no previous file | components/open_from_clipboard/DEPS » ('j') | components/open_from_clipboard/clipboard_recent_content_ios.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698