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

Side by Side Diff: components/arc.gypi

Issue 1684063002: Add ArcEnabled policy implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@26869593
Patch Set: Inject ArcBridgeService for testing. 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //components/arc 8 # GN version: //components/arc
9 'target_name': 'arc', 9 'target_name': 'arc',
10 'type': 'static_library', 10 'type': 'static_library',
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after
62 '..', 62 '..',
63 ], 63 ],
64 'dependencies': [ 64 'dependencies': [
65 '../base/base.gyp:base', 65 '../base/base.gyp:base',
66 'arc', 66 'arc',
67 'arc_mojo_bindings', 67 'arc_mojo_bindings',
68 ], 68 ],
69 'sources': [ 69 'sources': [
70 'arc/test/fake_app_instance.cc', 70 'arc/test/fake_app_instance.cc',
71 'arc/test/fake_app_instance.h', 71 'arc/test/fake_app_instance.h',
72 'arc/test/fake_arc_bridge_bootstrap.cc',
73 'arc/test/fake_arc_bridge_bootstrap.h',
72 'arc/test/fake_arc_bridge_instance.cc', 74 'arc/test/fake_arc_bridge_instance.cc',
73 'arc/test/fake_arc_bridge_instance.h', 75 'arc/test/fake_arc_bridge_instance.h',
74 'arc/test/fake_arc_bridge_service.cc', 76 'arc/test/fake_arc_bridge_service.cc',
75 'arc/test/fake_arc_bridge_service.h', 77 'arc/test/fake_arc_bridge_service.h',
76 ], 78 ],
77 }, 79 },
78 { 80 {
79 # GN version: //components/arc:mojo_bindings 81 # GN version: //components/arc:mojo_bindings
80 'target_name': 'arc_mojo_bindings', 82 'target_name': 'arc_mojo_bindings',
81 'type': 'static_library', 83 'type': 'static_library',
(...skipping 11 matching lines...) Expand all
93 'arc/common/net.mojom', 95 'arc/common/net.mojom',
94 'arc/common/notifications.mojom', 96 'arc/common/notifications.mojom',
95 'arc/common/power.mojom', 97 'arc/common/power.mojom',
96 'arc/common/process.mojom', 98 'arc/common/process.mojom',
97 'arc/common/settings.mojom', 99 'arc/common/settings.mojom',
98 'arc/common/video.mojom', 100 'arc/common/video.mojom',
99 ], 101 ],
100 }, 102 },
101 ], 103 ],
102 } 104 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698