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

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

Issue 2877883002: Consolidate two IsArcWindow functions to reduce code duplication (Closed)
Patch Set: review 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
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",
(...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after
109 "arc_session_runner.cc", 109 "arc_session_runner.cc",
110 "arc_session_runner.h", 110 "arc_session_runner.h",
111 "arc_stop_reason.cc", 111 "arc_stop_reason.cc",
112 "arc_stop_reason.h", 112 "arc_stop_reason.h",
113 "arc_util.cc", 113 "arc_util.cc",
114 "arc_util.h", 114 "arc_util.h",
115 "instance_holder.h", 115 "instance_holder.h",
116 ] 116 ]
117 117
118 deps = [ 118 deps = [
119 "//ash:ash",
120 "//ash/shared:app_types",
119 "//base", 121 "//base",
120 "//chromeos", 122 "//chromeos",
121 "//components/user_manager", 123 "//components/user_manager",
122 "//mojo/edk/system", 124 "//mojo/edk/system",
123 ] 125 ]
124 126
125 public_deps = [ 127 public_deps = [
126 ":arc_bindings", 128 ":arc_bindings",
127 ] 129 ]
128 } 130 }
(...skipping 89 matching lines...) Expand 10 before | Expand all | Expand 10 after
218 "intent_helper/font_size_util_unittest.cc", 220 "intent_helper/font_size_util_unittest.cc",
219 "intent_helper/intent_filter_unittest.cc", 221 "intent_helper/intent_filter_unittest.cc",
220 "intent_helper/link_handler_model_impl_unittest.cc", 222 "intent_helper/link_handler_model_impl_unittest.cc",
221 "intent_helper/local_activity_resolver_unittest.cc", 223 "intent_helper/local_activity_resolver_unittest.cc",
222 "intent_helper/page_transition_util_unittest.cc", 224 "intent_helper/page_transition_util_unittest.cc",
223 "kiosk/arc_kiosk_bridge_unittest.cc", 225 "kiosk/arc_kiosk_bridge_unittest.cc",
224 ] 226 ]
225 227
226 deps = [ 228 deps = [
227 ":arc_test_support", 229 ":arc_test_support",
230 "//ash:ash",
231 "//ash/shared:app_types",
228 "//base", 232 "//base",
229 "//base/test:test_support", 233 "//base/test:test_support",
230 "//chromeos", 234 "//chromeos",
231 "//device/bluetooth", 235 "//device/bluetooth",
232 "//mojo/public/cpp/system:system", 236 "//mojo/public/cpp/system:system",
233 "//testing/gmock", 237 "//testing/gmock",
234 "//testing/gtest", 238 "//testing/gtest",
235 "//ui/aura", 239 "//ui/aura",
236 "//ui/aura:test_support", 240 "//ui/aura:test_support",
237 "//ui/base:test_support", 241 "//ui/base:test_support",
238 "//ui/base/ime", 242 "//ui/base/ime",
239 "//ui/events", 243 "//ui/events",
240 "//ui/events:dom_keycode_converter", 244 "//ui/events:dom_keycode_converter",
241 "//url:url", 245 "//url:url",
242 ] 246 ]
243 } 247 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698