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

Unified Diff: ios/public/provider/chrome/browser/native_app_launcher/BUILD.gn

Issue 2529763002: Create FakeProviders for NativeAppMetadata and NativeAppManager (Closed)
Patch Set: Add implementation for |schemeForAppId:| Created 4 years, 1 month 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: ios/public/provider/chrome/browser/native_app_launcher/BUILD.gn
diff --git a/ios/public/provider/chrome/browser/native_app_launcher/BUILD.gn b/ios/public/provider/chrome/browser/native_app_launcher/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..2c216a1b8e89a27cd06be52c1fa4f49402063807
--- /dev/null
+++ b/ios/public/provider/chrome/browser/native_app_launcher/BUILD.gn
@@ -0,0 +1,28 @@
+# Copyright 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.
+
+source_set("native_app_launcher") {
+ configs += [ "//build/config/compiler:enable_arc" ]
sdefresne 2016/11/28 09:28:12 nit: can you move "configs" at the end of "source_
sczs1 2016/11/28 19:16:30 Done.
+ sources = [
+ "native_app_metadata.h",
+ "native_app_types.h",
+ "native_app_whitelist_manager.h",
+ ]
+}
+
+source_set("test_support") {
+ configs += [ "//build/config/compiler:enable_arc" ]
+ testonly = true
+ sources = [
+ "fake_native_app_metadata.h",
+ "fake_native_app_metadata.mm",
+ "fake_native_app_whitelist_manager.h",
+ "fake_native_app_whitelist_manager.mm",
+ ]
+ deps = [
+ ":native_app_launcher",
+ "//base",
+ "//url",
+ ]
+}

Powered by Google App Engine
This is Rietveld 408576698