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

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

Issue 1760773004: Add "Open with <ARC-app-name>" items to the context menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: add a missing override; 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
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 18 matching lines...) Expand all
29 "ime/arc_ime_bridge_impl.cc", 29 "ime/arc_ime_bridge_impl.cc",
30 "ime/arc_ime_bridge_impl.h", 30 "ime/arc_ime_bridge_impl.h",
31 "ime/arc_ime_service.cc", 31 "ime/arc_ime_service.cc",
32 "ime/arc_ime_service.h", 32 "ime/arc_ime_service.h",
33 "input/arc_input_bridge.cc", 33 "input/arc_input_bridge.cc",
34 "input/arc_input_bridge.h", 34 "input/arc_input_bridge.h",
35 "intent_helper/arc_intent_helper_bridge.cc", 35 "intent_helper/arc_intent_helper_bridge.cc",
36 "intent_helper/arc_intent_helper_bridge.h", 36 "intent_helper/arc_intent_helper_bridge.h",
37 "intent_helper/font_size_util.cc", 37 "intent_helper/font_size_util.cc",
38 "intent_helper/font_size_util.h", 38 "intent_helper/font_size_util.h",
39 "intent_helper/open_with_menu_observer.cc",
40 "intent_helper/open_with_menu_observer.h",
39 "metrics/arc_low_memory_killer_monitor.cc", 41 "metrics/arc_low_memory_killer_monitor.cc",
40 "metrics/arc_low_memory_killer_monitor.h", 42 "metrics/arc_low_memory_killer_monitor.h",
41 "metrics/arc_metrics_service.cc", 43 "metrics/arc_metrics_service.cc",
42 "metrics/arc_metrics_service.h", 44 "metrics/arc_metrics_service.h",
43 "net/arc_net_host_impl.cc", 45 "net/arc_net_host_impl.cc",
44 "net/arc_net_host_impl.h", 46 "net/arc_net_host_impl.h",
45 "power/arc_power_bridge.cc", 47 "power/arc_power_bridge.cc",
46 "power/arc_power_bridge.h", 48 "power/arc_power_bridge.h",
47 ] 49 ]
48 50
49 deps = [ 51 deps = [
50 "//ash:ash", 52 "//ash:ash",
51 "//base", 53 "//base",
52 "//chromeos", 54 "//chromeos",
53 "//chromeos:power_manager_proto", 55 "//chromeos:power_manager_proto",
54 "//components/exo", 56 "//components/exo",
55 "//components/onc", 57 "//components/onc",
56 "//components/prefs", 58 "//components/prefs",
59 "//components/renderer_context_menu:renderer_context_menu",
57 "//components/signin/core/account_id", 60 "//components/signin/core/account_id",
61 "//components/strings",
62 "//content/public/browser",
63 "//content/public/common",
58 "//google_apis", 64 "//google_apis",
59 "//ipc:ipc", 65 "//ipc:ipc",
60 "//ipc/mojo:mojo", 66 "//ipc/mojo:mojo",
61 "//mojo/edk/system", 67 "//mojo/edk/system",
62 "//third_party/re2:re2", 68 "//third_party/re2:re2",
63 "//ui/arc", 69 "//ui/arc",
64 "//ui/aura", 70 "//ui/aura",
65 "//ui/base:base", 71 "//ui/base:base",
66 "//ui/base/ime", 72 "//ui/base/ime",
67 "//ui/display:display", 73 "//ui/display:display",
(...skipping 47 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 "//mojo/common:common_base", 121 "//mojo/common:common_base",
116 ] 122 ]
117 } 123 }
118 124
119 source_set("unit_tests") { 125 source_set("unit_tests") {
120 testonly = true 126 testonly = true
121 sources = [ 127 sources = [
122 "arc_bridge_service_unittest.cc", 128 "arc_bridge_service_unittest.cc",
123 "ime/arc_ime_service_unittest.cc", 129 "ime/arc_ime_service_unittest.cc",
124 "intent_helper/font_size_util_unittest.cc", 130 "intent_helper/font_size_util_unittest.cc",
131 "intent_helper/open_with_menu_observer_unittest.cc",
125 ] 132 ]
126 133
127 deps = [ 134 deps = [
128 ":arc", 135 ":arc",
129 ":arc_bindings", 136 ":arc_bindings",
130 ":arc_test_support", 137 ":arc_test_support",
131 "//base", 138 "//base",
132 "//chromeos", 139 "//chromeos",
133 "//ipc/mojo:mojo", 140 "//ipc/mojo:mojo",
134 "//mojo/public/cpp/system:system", 141 "//mojo/public/cpp/system:system",
(...skipping 52 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 194
188 deps = [ 195 deps = [
189 ":arc_standalone", 196 ":arc_standalone",
190 ":arc_standalone_service", 197 ":arc_standalone_service",
191 "//base", 198 "//base",
192 "//ipc:ipc", 199 "//ipc:ipc",
193 "//ipc/mojo:mojo", 200 "//ipc/mojo:mojo",
194 "//mojo/edk/system", 201 "//mojo/edk/system",
195 ] 202 ]
196 } 203 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698