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

Side by Side 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 unified diff | 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 »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
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
3 # found in the LICENSE file.
4
5 import("//remoting/build/config/remoting_build.gni")
6
7 source_set("chromeos") {
8 sources = [
9 "aura_desktop_capturer.cc",
10 "aura_desktop_capturer.h",
11 "clipboard_aura.cc",
12 "clipboard_aura.h",
13 "message_box.cc",
14 "message_box.h",
15 "mouse_cursor_monitor_aura.cc",
16 "mouse_cursor_monitor_aura.h",
17 "point_transformer.cc",
18 "point_transformer.h",
19 "skia_bitmap_desktop_frame.cc",
20 "skia_bitmap_desktop_frame.h",
21 ]
22
23 public_deps = [
24 "//cc",
25 "//gpu/command_buffer/common",
26 "//ppapi/host",
27 "//remoting/protocol",
28 "//skia",
29 "//third_party/webrtc/modules/desktop_capture",
30 "//ui/aura",
31 "//ui/compositor",
32 "//ui/events",
33 "//ui/views",
34 ]
35
36 if (use_ash) {
37 public_deps += [ "//ash" ]
38 }
39 }
40
41 # The host portions of the remoting unit tests.
42 source_set("unit_tests") {
43 testonly = true
44
45 sources = [
46 "aura_desktop_capturer_unittest.cc",
47 "clipboard_aura_unittest.cc",
48 ]
49
50 configs += [ "//remoting/build/config:version" ]
51
52 deps = [
53 "//remoting/host",
54 "//remoting/host:test_support",
55 "//remoting/proto",
56 "//remoting/resources",
57 "//skia",
58 "//testing/gmock",
59 "//testing/gtest",
60 ]
61 }
OLDNEW
« 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