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

Unified Diff: ios/third_party/fishhook/BUILD.gn

Issue 1732543002: Add BUILD.gn for ios/third_party/fishhook. (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
« no previous file with comments | « BUILD.gn ('k') | ios/third_party/fishhook/fishhook.gyp » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/third_party/fishhook/BUILD.gn
diff --git a/components/leveldb/public/interfaces/BUILD.gn b/ios/third_party/fishhook/BUILD.gn
similarity index 50%
copy from components/leveldb/public/interfaces/BUILD.gn
copy to ios/third_party/fishhook/BUILD.gn
index 0b95cf4b365afc2bf68220e01f2eca7ac41d5b35..80b10d5d4430197de2b2732cc62323b4530ea6c7 100644
--- a/components/leveldb/public/interfaces/BUILD.gn
+++ b/ios/third_party/fishhook/BUILD.gn
@@ -2,14 +2,17 @@
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
-import("//mojo/public/tools/bindings/mojom.gni")
+config("public_config") {
sdefresne 2016/02/24 09:46:25 rename this to fishhook_config
baxley 2016/02/24 15:29:23 Done.
+ include_dirs = [ "src" ]
sdefresne 2016/02/24 09:46:25 visibility = [ ":fishhook" ]
baxley 2016/02/24 15:29:23 Done.
+}
+
+source_set("fishhook") {
+ testonly = true
sdefresne 2016/02/24 09:46:25 no blank line here
baxley 2016/02/24 15:29:23 Done.
-mojom("interfaces") {
sources = [
- "leveldb.mojom",
+ "src/fishhook.c",
+ "src/fishhook.h",
]
- deps = [
- "//components/filesystem/public/interfaces",
- ]
+ public_configs = [ ":public_config" ]
sdefresne 2016/02/24 09:46:25 public_configs = [ ":fishhook_config" ]
baxley 2016/02/24 15:29:23 Done.
}
sdefresne 2016/02/24 09:46:25 configs += [ ":fishhook_config" ]
« no previous file with comments | « BUILD.gn ('k') | ios/third_party/fishhook/fishhook.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698