| 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 19 matching lines...) Expand all Loading... |
| 30 'arc/arc_bridge_bootstrap.cc', | 30 'arc/arc_bridge_bootstrap.cc', |
| 31 'arc/arc_bridge_bootstrap.h', | 31 'arc/arc_bridge_bootstrap.h', |
| 32 'arc/arc_bridge_service.cc', | 32 'arc/arc_bridge_service.cc', |
| 33 'arc/arc_bridge_service.h', | 33 'arc/arc_bridge_service.h', |
| 34 'arc/arc_bridge_service_impl.cc', | 34 'arc/arc_bridge_service_impl.cc', |
| 35 'arc/arc_bridge_service_impl.h', | 35 'arc/arc_bridge_service_impl.h', |
| 36 'arc/arc_service.cc', | 36 'arc/arc_service.cc', |
| 37 'arc/arc_service.h', | 37 'arc/arc_service.h', |
| 38 'arc/arc_service_manager.cc', | 38 'arc/arc_service_manager.cc', |
| 39 'arc/arc_service_manager.h', | 39 'arc/arc_service_manager.h', |
| 40 'arc/audio/arc_audio_bridge.cc', |
| 41 'arc/audio/arc_audio_bridge.h', |
| 40 'arc/auth/arc_auth_fetcher.cc', | 42 'arc/auth/arc_auth_fetcher.cc', |
| 41 'arc/auth/arc_auth_fetcher.h', | 43 'arc/auth/arc_auth_fetcher.h', |
| 42 'arc/clipboard/arc_clipboard_bridge.cc', | 44 'arc/clipboard/arc_clipboard_bridge.cc', |
| 43 'arc/clipboard/arc_clipboard_bridge.h', | 45 'arc/clipboard/arc_clipboard_bridge.h', |
| 44 'arc/crash_collector/arc_crash_collector_bridge.cc', | 46 'arc/crash_collector/arc_crash_collector_bridge.cc', |
| 45 'arc/crash_collector/arc_crash_collector_bridge.h', | 47 'arc/crash_collector/arc_crash_collector_bridge.h', |
| 46 'arc/ime/arc_ime_bridge.h', | 48 'arc/ime/arc_ime_bridge.h', |
| 47 'arc/ime/arc_ime_bridge_impl.cc', | 49 'arc/ime/arc_ime_bridge_impl.cc', |
| 48 'arc/ime/arc_ime_bridge_impl.h', | 50 'arc/ime/arc_ime_bridge_impl.h', |
| 49 'arc/ime/arc_ime_service.cc', | 51 'arc/ime/arc_ime_service.cc', |
| (...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 { | 86 { |
| 85 # GN version: //components/arc:mojo_bindings | 87 # GN version: //components/arc:mojo_bindings |
| 86 'target_name': 'arc_mojo_bindings', | 88 'target_name': 'arc_mojo_bindings', |
| 87 'type': 'static_library', | 89 'type': 'static_library', |
| 88 'includes': [ | 90 'includes': [ |
| 89 '../mojo/mojom_bindings_generator.gypi', | 91 '../mojo/mojom_bindings_generator.gypi', |
| 90 ], | 92 ], |
| 91 'sources': [ | 93 'sources': [ |
| 92 'arc/common/app.mojom', | 94 'arc/common/app.mojom', |
| 93 'arc/common/arc_bridge.mojom', | 95 'arc/common/arc_bridge.mojom', |
| 96 'arc/common/audio.mojom', |
| 94 'arc/common/auth.mojom', | 97 'arc/common/auth.mojom', |
| 95 'arc/common/clipboard.mojom', | 98 'arc/common/clipboard.mojom', |
| 96 'arc/common/crash_collector.mojom', | 99 'arc/common/crash_collector.mojom', |
| 97 'arc/common/ime.mojom', | 100 'arc/common/ime.mojom', |
| 98 'arc/common/input.mojom', | 101 'arc/common/input.mojom', |
| 99 'arc/common/intent_helper.mojom', | 102 'arc/common/intent_helper.mojom', |
| 100 'arc/common/net.mojom', | 103 'arc/common/net.mojom', |
| 101 'arc/common/notifications.mojom', | 104 'arc/common/notifications.mojom', |
| 102 'arc/common/policy.mojom', | 105 'arc/common/policy.mojom', |
| 103 'arc/common/power.mojom', | 106 'arc/common/power.mojom', |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 150 '../base/base.gyp:base', | 153 '../base/base.gyp:base', |
| 151 '../ipc/ipc.gyp:ipc', | 154 '../ipc/ipc.gyp:ipc', |
| 152 '../mojo/mojo_edk.gyp:mojo_system_impl', | 155 '../mojo/mojo_edk.gyp:mojo_system_impl', |
| 153 ], | 156 ], |
| 154 'sources': [ | 157 'sources': [ |
| 155 'arc/standalone/arc_standalone_bridge_main.cc', | 158 'arc/standalone/arc_standalone_bridge_main.cc', |
| 156 ] | 159 ] |
| 157 } | 160 } |
| 158 ], | 161 ], |
| 159 } | 162 } |
| OLD | NEW |