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 29 matching lines...) Expand all Loading... |
40 'target_name': 'arc_test_support', | 40 'target_name': 'arc_test_support', |
41 'type': 'static_library', | 41 'type': 'static_library', |
42 'include_dirs': [ | 42 'include_dirs': [ |
43 '..', | 43 '..', |
44 ], | 44 ], |
45 'dependencies': [ | 45 'dependencies': [ |
46 '../base/base.gyp:base', | 46 '../base/base.gyp:base', |
47 'arc', | 47 'arc', |
48 ], | 48 ], |
49 'sources': [ | 49 'sources': [ |
50 'arc/test/fake_app_instance.cc', | |
51 'arc/test/fake_app_instance.h', | |
52 'arc/test/fake_arc_bridge_instance.cc', | 50 'arc/test/fake_arc_bridge_instance.cc', |
53 'arc/test/fake_arc_bridge_instance.h', | 51 'arc/test/fake_arc_bridge_instance.h', |
54 'arc/test/fake_arc_bridge_service.cc', | 52 'arc/test/fake_arc_bridge_service.cc', |
55 'arc/test/fake_arc_bridge_service.h', | 53 'arc/test/fake_arc_bridge_service.h', |
56 ], | 54 ], |
57 }, | 55 }, |
58 { | 56 { |
59 # GN version: //components/arc:mojo_bindings | 57 # GN version: //components/arc:mojo_bindings |
60 'target_name': 'arc_mojo_bindings', | 58 'target_name': 'arc_mojo_bindings', |
61 'type': 'static_library', | 59 'type': 'static_library', |
62 'includes': [ | 60 'includes': [ |
63 '../third_party/mojo/mojom_bindings_generator.gypi', | 61 '../third_party/mojo/mojom_bindings_generator.gypi', |
64 ], | 62 ], |
65 'sources': [ | 63 'sources': [ |
66 'arc/common/app.mojom', | |
67 'arc/common/arc_bridge.mojom', | 64 'arc/common/arc_bridge.mojom', |
68 'arc/common/input.mojom', | |
69 'arc/common/notifications.mojom', | |
70 'arc/common/power.mojom', | |
71 'arc/common/process.mojom', | |
72 'arc/common/settings.mojom', | |
73 ], | 65 ], |
74 }, | 66 }, |
75 ], | 67 ], |
76 } | 68 } |
OLD | NEW |