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

Unified Diff: remoting/host/chromeos/BUILD.gn

Issue 2438773003: Update CRD ChromeOS Host build files to be better in line with GN style. (Closed)
Patch Set: Moving unicode_to_keysym to x11, that is the only place the class is used. Created 3 years, 8 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/host/audio_capturer_chromeos.cc ('k') | remoting/host/linux/BUILD.gn » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: remoting/host/chromeos/BUILD.gn
diff --git a/remoting/host/chromeos/BUILD.gn b/remoting/host/chromeos/BUILD.gn
new file mode 100644
index 0000000000000000000000000000000000000000..018276acae03aa2c5c9e16225c017b6ed5bea696
--- /dev/null
+++ b/remoting/host/chromeos/BUILD.gn
@@ -0,0 +1,61 @@
+# 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")
+
+source_set("chromeos") {
+ sources = [
+ "aura_desktop_capturer.cc",
+ "aura_desktop_capturer.h",
+ "clipboard_aura.cc",
+ "clipboard_aura.h",
+ "message_box.cc",
+ "message_box.h",
+ "mouse_cursor_monitor_aura.cc",
+ "mouse_cursor_monitor_aura.h",
+ "point_transformer.cc",
+ "point_transformer.h",
+ "skia_bitmap_desktop_frame.cc",
+ "skia_bitmap_desktop_frame.h",
+ ]
+
+ public_deps = [
+ "//cc",
+ "//gpu/command_buffer/common",
+ "//ppapi/host",
+ "//remoting/protocol",
+ "//skia",
+ "//third_party/webrtc/modules/desktop_capture",
+ "//ui/aura",
+ "//ui/compositor",
+ "//ui/events",
+ "//ui/views",
+ ]
+
+ if (use_ash) {
+ public_deps += [ "//ash" ]
+ }
+}
+
+# The host portions of the remoting unit tests.
+source_set("unit_tests") {
+ testonly = true
+
+ sources = [
+ "aura_desktop_capturer_unittest.cc",
+ "clipboard_aura_unittest.cc",
+ ]
+
+ configs += [ "//remoting/build/config:version" ]
+
+ deps = [
+ "//remoting/host",
+ "//remoting/host:test_support",
+ "//remoting/proto",
+ "//remoting/resources",
+ "//skia",
+ "//testing/gmock",
+ "//testing/gtest",
+ ]
+}
« no previous file with comments | « remoting/host/audio_capturer_chromeos.cc ('k') | remoting/host/linux/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698