| 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/aura/aura.gyp:aura', | 20 '../ui/aura/aura.gyp:aura', |
| 21 '../ui/base/ui_base.gyp:ui_base', |
| 21 '../ui/events/events.gyp:events_base', | 22 '../ui/events/events.gyp:events_base', |
| 22 ], | 23 ], |
| 23 'sources': [ | 24 'sources': [ |
| 24 'arc/auth/arc_auth_service.h', | 25 'arc/auth/arc_auth_service.h', |
| 25 'arc/arc_bridge_bootstrap.cc', | 26 'arc/arc_bridge_bootstrap.cc', |
| 26 'arc/arc_bridge_bootstrap.h', | 27 'arc/arc_bridge_bootstrap.h', |
| 27 'arc/arc_bridge_service.cc', | 28 'arc/arc_bridge_service.cc', |
| 28 'arc/arc_bridge_service.h', | 29 'arc/arc_bridge_service.h', |
| 29 'arc/arc_bridge_service_impl.cc', | 30 'arc/arc_bridge_service_impl.cc', |
| 30 'arc/arc_bridge_service_impl.h', | 31 'arc/arc_bridge_service_impl.h', |
| 31 'arc/arc_service_manager.cc', | 32 'arc/arc_service_manager.cc', |
| 32 'arc/arc_service_manager.h', | 33 'arc/arc_service_manager.h', |
| 34 'arc/clipboard/arc_clipboard_bridge.cc', |
| 35 'arc/clipboard/arc_clipboard_bridge.h', |
| 33 'arc/input/arc_input_bridge.h', | 36 'arc/input/arc_input_bridge.h', |
| 34 'arc/input/arc_input_bridge_impl.cc', | 37 'arc/input/arc_input_bridge_impl.cc', |
| 35 'arc/input/arc_input_bridge_impl.h', | 38 'arc/input/arc_input_bridge_impl.h', |
| 36 'arc/settings/arc_settings_bridge.cc', | 39 'arc/settings/arc_settings_bridge.cc', |
| 37 'arc/settings/arc_settings_bridge.h', | 40 'arc/settings/arc_settings_bridge.h', |
| 38 'arc/power/arc_power_bridge.cc', | 41 'arc/power/arc_power_bridge.cc', |
| 39 'arc/power/arc_power_bridge.h', | 42 'arc/power/arc_power_bridge.h', |
| 40 ], | 43 ], |
| 41 }, | 44 }, |
| 42 { | 45 { |
| (...skipping 21 matching lines...) Expand all Loading... |
| 64 # GN version: //components/arc:mojo_bindings | 67 # GN version: //components/arc:mojo_bindings |
| 65 'target_name': 'arc_mojo_bindings', | 68 'target_name': 'arc_mojo_bindings', |
| 66 'type': 'static_library', | 69 'type': 'static_library', |
| 67 'includes': [ | 70 'includes': [ |
| 68 '../third_party/mojo/mojom_bindings_generator.gypi', | 71 '../third_party/mojo/mojom_bindings_generator.gypi', |
| 69 ], | 72 ], |
| 70 'sources': [ | 73 'sources': [ |
| 71 'arc/common/app.mojom', | 74 'arc/common/app.mojom', |
| 72 'arc/common/arc_bridge.mojom', | 75 'arc/common/arc_bridge.mojom', |
| 73 'arc/common/auth.mojom', | 76 'arc/common/auth.mojom', |
| 77 'arc/common/clipboard.mojom', |
| 74 'arc/common/input.mojom', | 78 'arc/common/input.mojom', |
| 75 'arc/common/notifications.mojom', | 79 'arc/common/notifications.mojom', |
| 76 'arc/common/power.mojom', | 80 'arc/common/power.mojom', |
| 77 'arc/common/process.mojom', | 81 'arc/common/process.mojom', |
| 78 'arc/common/settings.mojom', | 82 'arc/common/settings.mojom', |
| 79 ], | 83 ], |
| 80 }, | 84 }, |
| 81 ], | 85 ], |
| 82 } | 86 } |
| OLD | NEW |