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

Unified Diff: ios/showcase/core/BUILD.gn

Issue 2592593003: Upstream ios/showcase source code. (Closed)
Patch Set: Created 4 years 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 | « ios/showcase/common/coordinator.h ('k') | ios/showcase/core/Info.plist » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: ios/showcase/core/BUILD.gn
diff --git a/ios/showcase/core/BUILD.gn b/ios/showcase/core/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..91485ef96c12ba6d952b6741a9cd19cf97947947
--- /dev/null
+++ b/ios/showcase/core/BUILD.gn
@@ -0,0 +1,43 @@
+# 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("core") {
+ sources = [
+ "app_delegate.h",
+ "app_delegate.mm",
+ "showcase_model.h",
+ "showcase_model.mm",
+ "showcase_view_controller.h",
+ "showcase_view_controller.mm",
+ ]
+ deps = [
+ "//base",
+ "//ios/showcase/common",
+ ]
+ libs = [ "UIKit.framework" ]
+ configs += [ "//build/config/compiler:enable_arc" ]
+}
+
+source_set("main") {
+ sources = [
+ "main.mm",
+ ]
+ deps = [
+ ":core",
+ ]
+ libs = [ "UIKit.framework" ]
+ configs += [ "//build/config/compiler:enable_arc" ]
+}
+
+source_set("eg_tests") {
+ testonly = true
+ sources = [
+ "showcase_egtest.mm",
+ ]
+ deps = [
+ "//ios/showcase/test",
+ "//ios/third_party/earl_grey",
+ ]
+ configs += [ "//build/config/compiler:enable_arc" ]
+}
« no previous file with comments | « ios/showcase/common/coordinator.h ('k') | ios/showcase/core/Info.plist » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698