| OLD | NEW |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | 1 # Copyright 2016 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 import("//remoting/build/config/remoting_build.gni") | 5 import("//remoting/build/config/remoting_build.gni") |
| 6 | 6 |
| 7 group("all") { | 7 group("all") { |
| 8 testonly = true | 8 testonly = true |
| 9 | 9 |
| 10 deps = [ | 10 deps = [ |
| (...skipping 28 matching lines...) Expand all Loading... |
| 39 "utility.h", | 39 "utility.h", |
| 40 "utility.mm", | 40 "utility.mm", |
| 41 ] | 41 ] |
| 42 | 42 |
| 43 if (!is_chrome_branded) { | 43 if (!is_chrome_branded) { |
| 44 sources += [ "host_preferences_persistence_chromium.mm" ] | 44 sources += [ "host_preferences_persistence_chromium.mm" ] |
| 45 } | 45 } |
| 46 | 46 |
| 47 public_deps = [ | 47 public_deps = [ |
| 48 "//third_party/webrtc/base:rtc_base", | 48 "//third_party/webrtc/base:rtc_base", |
| 49 "//third_party/webrtc/base:rtc_task_runner", | |
| 50 "//third_party/webrtc/modules/desktop_capture:primitives", | 49 "//third_party/webrtc/modules/desktop_capture:primitives", |
| 51 ] | 50 ] |
| 52 | 51 |
| 53 deps = [ | 52 deps = [ |
| 54 "//base", | 53 "//base", |
| 55 "//remoting/protocol", | 54 "//remoting/protocol", |
| 56 ] | 55 ] |
| 57 | 56 |
| 58 libs = [ | 57 libs = [ |
| 59 "CoreGraphics.framework", | 58 "CoreGraphics.framework", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 80 | 79 |
| 81 deps = [ | 80 deps = [ |
| 82 ":ios_core", | 81 ":ios_core", |
| 83 "//testing/gtest", | 82 "//testing/gtest", |
| 84 ] | 83 ] |
| 85 | 84 |
| 86 configs += [ "//build/config/compiler:enable_arc" ] | 85 configs += [ "//build/config/compiler:enable_arc" ] |
| 87 | 86 |
| 88 data = [] | 87 data = [] |
| 89 } | 88 } |
| OLD | NEW |