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

Unified Diff: remoting/client/ios/BUILD.gn

Issue 2871993003: Moving the iOS directory to be remoting top level. (Closed)
Patch Set: //remoting/ios was the old landing target for the internal iOS application. Fix. Created 3 years, 7 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 | « remoting/BUILD.gn ('k') | remoting/client/ios/DEPS » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/client/ios/BUILD.gn
diff --git a/remoting/client/ios/BUILD.gn b/remoting/client/ios/BUILD.gn
deleted file mode 100644
index 91d7a2d112395f18b70cd31e298c6b8242f79fa4..0000000000000000000000000000000000000000
--- a/remoting/client/ios/BUILD.gn
+++ /dev/null
@@ -1,89 +0,0 @@
-# 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.
-
-import("//remoting/build/config/remoting_build.gni")
-
-group("all") {
- testonly = true
-
- deps = [
- ":ios_core",
- "./app:all",
- ]
-}
-
-group("all_test") {
- testonly = true
-
- deps = [
- ":ios_core_unit_tests",
- ]
-}
-
-source_set("ios_core") {
- sources = [
- "client_gestures.h",
- "client_gestures.mm",
- "host_preferences.h",
- "host_preferences.mm",
- "host_preferences_persistence.h",
- "key_input.h",
- "key_input.mm",
- "key_map_us.h",
- "keychain_wrapper.h",
- "keychain_wrapper.mm",
- ]
-
- if (!is_chrome_branded) {
- sources += [ "host_preferences_persistence_chromium.mm" ]
- } else {
- # TODO(nicholss): Until we have a private implementation of this, stub it
- # with the chromium version. We still want the logic of is_chrome_branded
- # but to get the release builds building we will just reuse the file.
- sources += [ "host_preferences_persistence_chromium.mm" ]
- }
-
- public_deps = [
- "//remoting/client/ios/domain",
- "//remoting/client/ios/facade",
- "//remoting/client/ios/session",
- "//third_party/webrtc/base:rtc_base",
- "//third_party/webrtc/modules/desktop_capture:primitives",
- ]
-
- deps = [
- "//base",
- "//remoting/protocol",
- ]
-
- libs = [
- "CoreGraphics.framework",
- "GLKit.framework",
- "OpenGLES.framework",
- ]
-
- configs += [ "//build/config/compiler:enable_arc" ]
-}
-
-source_set("ios_core_unit_tests") {
- testonly = true
-
- include_dirs = [
- "$root_gen_dir",
- "//third_party/protobuf/src",
- ]
-
- sources = [
- "key_input_unittest.mm",
- ]
-
- deps = [
- ":ios_core",
- "//testing/gtest",
- ]
-
- configs += [ "//build/config/compiler:enable_arc" ]
-
- data = []
-}
« no previous file with comments | « remoting/BUILD.gn ('k') | remoting/client/ios/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698