OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |