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

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

Issue 2877883002: Consolidate two IsArcWindow functions to reduce code duplication (Closed)
Patch Set: Address a comment from sadrul@ Created 3 years, 7 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 | « chrome/browser/memory/tab_manager_delegate_chromeos_unittest.cc ('k') | components/arc/DEPS » ('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_service_manager.cc", 10 "arc_service_manager.cc",
11 "arc_service_manager.h", 11 "arc_service_manager.h",
12 "arc_util.cc",
13 "arc_util.h",
12 "audio/arc_audio_bridge.cc", 14 "audio/arc_audio_bridge.cc",
13 "audio/arc_audio_bridge.h", 15 "audio/arc_audio_bridge.h",
14 "bluetooth/arc_bluetooth_bridge.cc", 16 "bluetooth/arc_bluetooth_bridge.cc",
15 "bluetooth/arc_bluetooth_bridge.h", 17 "bluetooth/arc_bluetooth_bridge.h",
16 "bluetooth/bluetooth_struct_traits.cc", 18 "bluetooth/bluetooth_struct_traits.cc",
17 "bluetooth/bluetooth_struct_traits.h", 19 "bluetooth/bluetooth_struct_traits.h",
18 "bluetooth/bluetooth_type_converters.cc", 20 "bluetooth/bluetooth_type_converters.cc",
19 "bluetooth/bluetooth_type_converters.h", 21 "bluetooth/bluetooth_type_converters.h",
20 "clipboard/arc_clipboard_bridge.cc", 22 "clipboard/arc_clipboard_bridge.cc",
21 "clipboard/arc_clipboard_bridge.h", 23 "clipboard/arc_clipboard_bridge.h",
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
61 "video_accelerator/video_accelerator_struct_traits.h", 63 "video_accelerator/video_accelerator_struct_traits.h",
62 ] 64 ]
63 65
64 public_deps = [ 66 public_deps = [
65 ":arc_base", 67 ":arc_base",
66 ] 68 ]
67 69
68 deps = [ 70 deps = [
69 "//ash:ash", 71 "//ash:ash",
70 "//ash/public/cpp:ash_public_cpp", 72 "//ash/public/cpp:ash_public_cpp",
73 "//ash/shared:app_types",
71 "//base", 74 "//base",
72 "//chromeos", 75 "//chromeos",
73 "//chromeos:power_manager_proto", 76 "//chromeos:power_manager_proto",
74 "//components/exo", 77 "//components/exo",
75 "//components/google/core/browser", 78 "//components/google/core/browser",
76 "//components/onc", 79 "//components/onc",
77 "//components/prefs", 80 "//components/prefs",
78 "//components/signin/core/account_id", 81 "//components/signin/core/account_id",
79 "//device/bluetooth", 82 "//device/bluetooth",
80 "//google_apis", 83 "//google_apis",
(...skipping 22 matching lines...) Expand all
103 "arc_features.cc", 106 "arc_features.cc",
104 "arc_features.h", 107 "arc_features.h",
105 "arc_service.cc", 108 "arc_service.cc",
106 "arc_service.h", 109 "arc_service.h",
107 "arc_session.cc", 110 "arc_session.cc",
108 "arc_session.h", 111 "arc_session.h",
109 "arc_session_runner.cc", 112 "arc_session_runner.cc",
110 "arc_session_runner.h", 113 "arc_session_runner.h",
111 "arc_stop_reason.cc", 114 "arc_stop_reason.cc",
112 "arc_stop_reason.h", 115 "arc_stop_reason.h",
113 "arc_util.cc",
114 "arc_util.h",
115 "instance_holder.h", 116 "instance_holder.h",
116 ] 117 ]
117 118
118 deps = [ 119 deps = [
119 "//base", 120 "//base",
120 "//chromeos", 121 "//chromeos",
121 "//components/user_manager", 122 "//components/user_manager",
122 "//mojo/edk/system", 123 "//mojo/edk/system",
123 ] 124 ]
124 125
(...skipping 93 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 "intent_helper/font_size_util_unittest.cc", 219 "intent_helper/font_size_util_unittest.cc",
219 "intent_helper/intent_filter_unittest.cc", 220 "intent_helper/intent_filter_unittest.cc",
220 "intent_helper/link_handler_model_impl_unittest.cc", 221 "intent_helper/link_handler_model_impl_unittest.cc",
221 "intent_helper/local_activity_resolver_unittest.cc", 222 "intent_helper/local_activity_resolver_unittest.cc",
222 "intent_helper/page_transition_util_unittest.cc", 223 "intent_helper/page_transition_util_unittest.cc",
223 "kiosk/arc_kiosk_bridge_unittest.cc", 224 "kiosk/arc_kiosk_bridge_unittest.cc",
224 ] 225 ]
225 226
226 deps = [ 227 deps = [
227 ":arc_test_support", 228 ":arc_test_support",
229 "//ash/shared:app_types",
228 "//base", 230 "//base",
229 "//base/test:test_support", 231 "//base/test:test_support",
230 "//chromeos", 232 "//chromeos",
231 "//device/bluetooth", 233 "//device/bluetooth",
232 "//mojo/public/cpp/system:system", 234 "//mojo/public/cpp/system:system",
233 "//testing/gmock", 235 "//testing/gmock",
234 "//testing/gtest", 236 "//testing/gtest",
235 "//ui/aura", 237 "//ui/aura",
236 "//ui/aura:test_support", 238 "//ui/aura:test_support",
237 "//ui/base:test_support", 239 "//ui/base:test_support",
238 "//ui/base/ime", 240 "//ui/base/ime",
239 "//ui/events", 241 "//ui/events",
240 "//ui/events:dom_keycode_converter", 242 "//ui/events:dom_keycode_converter",
241 "//url:url", 243 "//url:url",
242 ] 244 ]
243 } 245 }
OLDNEW
« no previous file with comments | « chrome/browser/memory/tab_manager_delegate_chromeos_unittest.cc ('k') | components/arc/DEPS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698