OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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("//build/config/features.gni") | 5 import("//build/config/features.gni") |
6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
7 import("//remoting/remoting_version.gni") | 7 import("//remoting/remoting_version.gni") |
8 | 8 |
9 static_library("host") { | 9 static_library("host") { |
10 gypi_values = exec_script("//build/gypi_to_gn.py", | 10 gypi_values = exec_script("//build/gypi_to_gn.py", |
(...skipping 37 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
48 "clipboard_x11.cc", | 48 "clipboard_x11.cc", |
49 "linux/x_server_clipboard.cc", | 49 "linux/x_server_clipboard.cc", |
50 "linux/x_server_clipboard.h", | 50 "linux/x_server_clipboard.h", |
51 ] | 51 ] |
52 } | 52 } |
53 | 53 |
54 if (is_chromeos) { | 54 if (is_chromeos) { |
55 deps += [ | 55 deps += [ |
56 "//cc", | 56 "//cc", |
57 "//content", | 57 "//content", |
58 "//ppapi:ppapi_host", | 58 "//ppapi/host", |
59 "//skia", | 59 "//skia", |
60 "//ui/aura", | 60 "//ui/aura", |
61 "//ui/compositor", | 61 "//ui/compositor", |
62 "//ui/events", | 62 "//ui/events", |
63 "//ui/views", | 63 "//ui/views", |
64 ] | 64 ] |
65 | 65 |
66 if (use_ash) { | 66 if (use_ash) { |
67 deps += [ "//ash" ] | 67 deps += [ "//ash" ] |
68 } | 68 } |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
104 | 104 |
105 if (enable_webrtc) { | 105 if (enable_webrtc) { |
106 deps += [ | 106 deps += [ |
107 "//third_party/libjingle:libpeerconnection", | 107 "//third_party/libjingle:libpeerconnection", |
108 "//third_party/webrtc/modules/desktop_capture", | 108 "//third_party/webrtc/modules/desktop_capture", |
109 ] | 109 ] |
110 | 110 |
111 sources += rebase_path(gypi_values.remoting_cast_sources, ".", "//remoting") | 111 sources += rebase_path(gypi_values.remoting_cast_sources, ".", "//remoting") |
112 } | 112 } |
113 } | 113 } |
OLD | NEW |