| 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', |
| 11 'include_dirs': [ | 11 'include_dirs': [ |
| 12 '..', | 12 '..', |
| 13 ], | 13 ], |
| 14 'dependencies': [ | 14 'dependencies': [ |
| 15 'arc_mojo_bindings', | 15 'arc_mojo_bindings', |
| 16 '../base/base.gyp:base', | 16 '../base/base.gyp:base', |
| 17 '../chromeos/chromeos.gyp:chromeos', | 17 '../chromeos/chromeos.gyp:chromeos', |
| 18 '../chromeos/chromeos.gyp:power_manager_proto', | 18 '../chromeos/chromeos.gyp:power_manager_proto', |
| 19 '../ipc/ipc.gyp:ipc', | 19 '../ipc/ipc.gyp:ipc', |
| 20 '../ui/arc/arc.gyp:arc', | 20 '../ui/arc/arc.gyp:arc', |
| 21 '../ui/aura/aura.gyp:aura', | 21 '../ui/aura/aura.gyp:aura', |
| 22 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', | 22 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', |
| 23 '../ui/base/ui_base.gyp:ui_base', | 23 '../ui/base/ui_base.gyp:ui_base', |
| 24 '../ui/events/events.gyp:events_base', | 24 '../ui/events/events.gyp:events_base', |
| 25 ], | 25 ], |
| 26 'sources': [ | 26 'sources': [ |
| 27 'arc/auth/arc_auth_service.h', | |
| 28 'arc/arc_bridge_bootstrap.cc', | 27 'arc/arc_bridge_bootstrap.cc', |
| 29 'arc/arc_bridge_bootstrap.h', | 28 'arc/arc_bridge_bootstrap.h', |
| 30 'arc/arc_bridge_service.cc', | 29 'arc/arc_bridge_service.cc', |
| 31 'arc/arc_bridge_service.h', | 30 'arc/arc_bridge_service.h', |
| 32 'arc/arc_bridge_service_impl.cc', | 31 'arc/arc_bridge_service_impl.cc', |
| 33 'arc/arc_bridge_service_impl.h', | 32 'arc/arc_bridge_service_impl.h', |
| 33 'arc/arc_service.h', |
| 34 'arc/arc_service_manager.cc', | 34 'arc/arc_service_manager.cc', |
| 35 'arc/arc_service_manager.h', | 35 'arc/arc_service_manager.h', |
| 36 'arc/clipboard/arc_clipboard_bridge.cc', | 36 'arc/clipboard/arc_clipboard_bridge.cc', |
| 37 'arc/clipboard/arc_clipboard_bridge.h', | 37 'arc/clipboard/arc_clipboard_bridge.h', |
| 38 'arc/ime/arc_ime_bridge.cc', | 38 'arc/ime/arc_ime_bridge.cc', |
| 39 'arc/ime/arc_ime_bridge.h', | 39 'arc/ime/arc_ime_bridge.h', |
| 40 'arc/ime/arc_ime_ipc_host.cc', | 40 'arc/ime/arc_ime_ipc_host.cc', |
| 41 'arc/ime/arc_ime_ipc_host.h', | 41 'arc/ime/arc_ime_ipc_host.h', |
| 42 'arc/input/arc_input_bridge.cc', |
| 42 'arc/input/arc_input_bridge.h', | 43 'arc/input/arc_input_bridge.h', |
| 43 'arc/input/arc_input_bridge_impl.cc', | |
| 44 'arc/input/arc_input_bridge_impl.h', | |
| 45 'arc/settings/arc_settings_bridge.cc', | |
| 46 'arc/settings/arc_settings_bridge.h', | |
| 47 'arc/power/arc_power_bridge.cc', | 44 'arc/power/arc_power_bridge.cc', |
| 48 'arc/power/arc_power_bridge.h', | 45 'arc/power/arc_power_bridge.h', |
| 49 'arc/video/arc_video_bridge.cc', | 46 'arc/video/arc_video_bridge.cc', |
| 50 'arc/video/arc_video_bridge.h', | 47 'arc/video/arc_video_bridge.h', |
| 51 'arc/video/video_host_delegate.h', | 48 'arc/video/video_host_delegate.h', |
| 52 ], | 49 ], |
| 53 }, | 50 }, |
| 54 { | 51 { |
| 55 # GN version: //components/arc_test_support | 52 # GN version: //components/arc_test_support |
| 56 'target_name': 'arc_test_support', | 53 'target_name': 'arc_test_support', |
| (...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 'arc/common/input.mojom', | 85 'arc/common/input.mojom', |
| 89 'arc/common/notifications.mojom', | 86 'arc/common/notifications.mojom', |
| 90 'arc/common/power.mojom', | 87 'arc/common/power.mojom', |
| 91 'arc/common/process.mojom', | 88 'arc/common/process.mojom', |
| 92 'arc/common/settings.mojom', | 89 'arc/common/settings.mojom', |
| 93 'arc/common/video.mojom', | 90 'arc/common/video.mojom', |
| 94 ], | 91 ], |
| 95 }, | 92 }, |
| 96 ], | 93 ], |
| 97 } | 94 } |
| OLD | NEW |