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

Side by Side Diff: components/arc/BUILD.gn

Issue 1843563003: Move arc_intent_helper_bridge.h from c/b/chromeos/ to components/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address a comment Created 4 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 | « components/arc.gypi ('k') | components/arc/arc_service_manager.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//mojo/public/tools/bindings/mojom.gni") 5 import("//mojo/public/tools/bindings/mojom.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 static_library("arc") { 8 static_library("arc") {
9 sources = [ 9 sources = [
10 "arc_bridge_bootstrap.cc", 10 "arc_bridge_bootstrap.cc",
(...skipping 12 matching lines...) Expand all
23 "clipboard/arc_clipboard_bridge.h", 23 "clipboard/arc_clipboard_bridge.h",
24 "crash_collector/arc_crash_collector_bridge.cc", 24 "crash_collector/arc_crash_collector_bridge.cc",
25 "crash_collector/arc_crash_collector_bridge.h", 25 "crash_collector/arc_crash_collector_bridge.h",
26 "ime/arc_ime_bridge.h", 26 "ime/arc_ime_bridge.h",
27 "ime/arc_ime_bridge_impl.cc", 27 "ime/arc_ime_bridge_impl.cc",
28 "ime/arc_ime_bridge_impl.h", 28 "ime/arc_ime_bridge_impl.h",
29 "ime/arc_ime_service.cc", 29 "ime/arc_ime_service.cc",
30 "ime/arc_ime_service.h", 30 "ime/arc_ime_service.h",
31 "input/arc_input_bridge.cc", 31 "input/arc_input_bridge.cc",
32 "input/arc_input_bridge.h", 32 "input/arc_input_bridge.h",
33 "intent_helper/arc_intent_helper_bridge.cc",
34 "intent_helper/arc_intent_helper_bridge.h",
35 "intent_helper/font_size_util.cc",
36 "intent_helper/font_size_util.h",
33 "metrics/arc_low_memory_killer_monitor.cc", 37 "metrics/arc_low_memory_killer_monitor.cc",
34 "metrics/arc_low_memory_killer_monitor.h", 38 "metrics/arc_low_memory_killer_monitor.h",
35 "metrics/arc_metrics_service.cc", 39 "metrics/arc_metrics_service.cc",
36 "metrics/arc_metrics_service.h", 40 "metrics/arc_metrics_service.h",
37 "net/arc_net_host_impl.cc", 41 "net/arc_net_host_impl.cc",
38 "net/arc_net_host_impl.h", 42 "net/arc_net_host_impl.h",
39 "power/arc_power_bridge.cc", 43 "power/arc_power_bridge.cc",
40 "power/arc_power_bridge.h", 44 "power/arc_power_bridge.h",
41 ] 45 ]
42 46
(...skipping 11 matching lines...) Expand all
54 "//ipc/mojo:mojo", 58 "//ipc/mojo:mojo",
55 "//mojo/edk/system", 59 "//mojo/edk/system",
56 "//third_party/re2:re2", 60 "//third_party/re2:re2",
57 "//ui/arc", 61 "//ui/arc",
58 "//ui/aura", 62 "//ui/aura",
59 "//ui/base:base", 63 "//ui/base:base",
60 "//ui/base/ime", 64 "//ui/base/ime",
61 "//ui/display:display", 65 "//ui/display:display",
62 "//ui/events", 66 "//ui/events",
63 "//ui/events:dom_keycode_converter", 67 "//ui/events:dom_keycode_converter",
68 "//url:url",
64 ] 69 ]
65 70
66 public_deps = [ 71 public_deps = [
67 ":arc_bindings", 72 ":arc_bindings",
68 ] 73 ]
69 } 74 }
70 75
71 mojom("arc_bindings") { 76 mojom("arc_bindings") {
72 sources = [ 77 sources = [
73 "common/app.mojom", 78 "common/app.mojom",
(...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 "//base", 111 "//base",
107 "//mojo/common:common_base", 112 "//mojo/common:common_base",
108 ] 113 ]
109 } 114 }
110 115
111 source_set("unit_tests") { 116 source_set("unit_tests") {
112 testonly = true 117 testonly = true
113 sources = [ 118 sources = [
114 "arc_bridge_service_unittest.cc", 119 "arc_bridge_service_unittest.cc",
115 "ime/arc_ime_service_unittest.cc", 120 "ime/arc_ime_service_unittest.cc",
121 "intent_helper/font_size_util_unittest.cc",
116 ] 122 ]
117 123
118 deps = [ 124 deps = [
119 ":arc", 125 ":arc",
120 ":arc_bindings", 126 ":arc_bindings",
121 ":arc_test_support", 127 ":arc_test_support",
122 "//base", 128 "//base",
123 "//chromeos", 129 "//chromeos",
124 "//ipc/mojo:mojo", 130 "//ipc/mojo:mojo",
125 "//mojo/public/cpp/system:system", 131 "//mojo/public/cpp/system:system",
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
178 184
179 deps = [ 185 deps = [
180 ":arc_standalone", 186 ":arc_standalone",
181 ":arc_standalone_service", 187 ":arc_standalone_service",
182 "//base", 188 "//base",
183 "//ipc:ipc", 189 "//ipc:ipc",
184 "//ipc/mojo:mojo", 190 "//ipc/mojo:mojo",
185 "//mojo/edk/system", 191 "//mojo/edk/system",
186 ] 192 ]
187 } 193 }
OLDNEW
« no previous file with comments | « components/arc.gypi ('k') | components/arc/arc_service_manager.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698