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

Side by Side Diff: components/arc.gypi

Issue 1829703002: Add ArcEnabled policy implementation (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed test and removed all changes from arc_auth_service 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after
66 '..', 66 '..',
67 ], 67 ],
68 'dependencies': [ 68 'dependencies': [
69 '../base/base.gyp:base', 69 '../base/base.gyp:base',
70 'arc', 70 'arc',
71 'arc_mojo_bindings', 71 'arc_mojo_bindings',
72 ], 72 ],
73 'sources': [ 73 'sources': [
74 'arc/test/fake_app_instance.cc', 74 'arc/test/fake_app_instance.cc',
75 'arc/test/fake_app_instance.h', 75 'arc/test/fake_app_instance.h',
76 'arc/test/fake_arc_bridge_bootstrap.cc',
77 'arc/test/fake_arc_bridge_bootstrap.h',
76 'arc/test/fake_arc_bridge_instance.cc', 78 'arc/test/fake_arc_bridge_instance.cc',
77 'arc/test/fake_arc_bridge_instance.h', 79 'arc/test/fake_arc_bridge_instance.h',
78 'arc/test/fake_arc_bridge_service.cc', 80 'arc/test/fake_arc_bridge_service.cc',
79 'arc/test/fake_arc_bridge_service.h', 81 'arc/test/fake_arc_bridge_service.h',
80 'arc/test/fake_notifications_instance.cc', 82 'arc/test/fake_notifications_instance.cc',
81 'arc/test/fake_notifications_instance.h', 83 'arc/test/fake_notifications_instance.h',
82 ], 84 ],
83 }, 85 },
84 { 86 {
85 # GN version: //components/arc:mojo_bindings 87 # GN version: //components/arc:mojo_bindings
(...skipping 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
150 '../base/base.gyp:base', 152 '../base/base.gyp:base',
151 '../ipc/ipc.gyp:ipc', 153 '../ipc/ipc.gyp:ipc',
152 '../mojo/mojo_edk.gyp:mojo_system_impl', 154 '../mojo/mojo_edk.gyp:mojo_system_impl',
153 ], 155 ],
154 'sources': [ 156 'sources': [
155 'arc/standalone/arc_standalone_bridge_main.cc', 157 'arc/standalone/arc_standalone_bridge_main.cc',
156 ] 158 ]
157 } 159 }
158 ], 160 ],
159 } 161 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698