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', |
50 'arc/test/fake_arc_bridge_instance.cc', | 52 'arc/test/fake_arc_bridge_instance.cc', |
51 'arc/test/fake_arc_bridge_instance.h', | 53 'arc/test/fake_arc_bridge_instance.h', |
52 'arc/test/fake_arc_bridge_service.cc', | 54 'arc/test/fake_arc_bridge_service.cc', |
53 'arc/test/fake_arc_bridge_service.h', | 55 'arc/test/fake_arc_bridge_service.h', |
54 ], | 56 ], |
55 }, | 57 }, |
56 { | 58 { |
57 # GN version: //components/arc:mojo_bindings | 59 # GN version: //components/arc:mojo_bindings |
58 'target_name': 'arc_mojo_bindings', | 60 'target_name': 'arc_mojo_bindings', |
59 'type': 'static_library', | 61 'type': 'static_library', |
60 'includes': [ | 62 'includes': [ |
61 '../third_party/mojo/mojom_bindings_generator.gypi', | 63 '../third_party/mojo/mojom_bindings_generator.gypi', |
62 ], | 64 ], |
63 'sources': [ | 65 'sources': [ |
| 66 'arc/common/app.mojom', |
64 'arc/common/arc_bridge.mojom', | 67 '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', |
65 ], | 73 ], |
66 }, | 74 }, |
67 ], | 75 ], |
68 } | 76 } |
OLD | NEW |