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

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

Issue 1684063002: Add ArcEnabled policy implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@26869593
Patch Set: Added browser test. Created 4 years, 9 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 6
7 static_library("arc") { 7 static_library("arc") {
8 sources = [ 8 sources = [
9 "arc_bridge_bootstrap.cc", 9 "arc_bridge_bootstrap.cc",
10 "arc_bridge_bootstrap.h", 10 "arc_bridge_bootstrap.h",
(...skipping 65 matching lines...) Expand 10 before | Expand all | Expand 10 after
76 "common/settings.mojom", 76 "common/settings.mojom",
77 "common/video.mojom", 77 "common/video.mojom",
78 ] 78 ]
79 } 79 }
80 80
81 static_library("arc_test_support") { 81 static_library("arc_test_support") {
82 testonly = true 82 testonly = true
83 sources = [ 83 sources = [
84 "test/fake_app_instance.cc", 84 "test/fake_app_instance.cc",
85 "test/fake_app_instance.h", 85 "test/fake_app_instance.h",
86 "test/fake_arc_bridge_bootstrap.cc",
87 "test/fake_arc_bridge_bootstrap.h",
86 "test/fake_arc_bridge_instance.cc", 88 "test/fake_arc_bridge_instance.cc",
87 "test/fake_arc_bridge_instance.h", 89 "test/fake_arc_bridge_instance.h",
88 "test/fake_arc_bridge_service.cc", 90 "test/fake_arc_bridge_service.cc",
89 "test/fake_arc_bridge_service.h", 91 "test/fake_arc_bridge_service.h",
90 ] 92 ]
91 93
92 deps = [ 94 deps = [
93 ":arc", 95 ":arc",
94 ":arc_bindings", 96 ":arc_bindings",
95 "//base", 97 "//base",
(...skipping 18 matching lines...) Expand all
114 "//mojo/public/cpp/environment:environment", 116 "//mojo/public/cpp/environment:environment",
115 "//mojo/public/cpp/system:system", 117 "//mojo/public/cpp/system:system",
116 "//testing/gtest", 118 "//testing/gtest",
117 "//ui/aura", 119 "//ui/aura",
118 "//ui/base:test_support", 120 "//ui/base:test_support",
119 "//ui/base/ime", 121 "//ui/base/ime",
120 "//ui/events", 122 "//ui/events",
121 "//ui/events:dom_keycode_converter", 123 "//ui/events:dom_keycode_converter",
122 ] 124 ]
123 } 125 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698