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