| 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 'components.gyp:onc_component', |
| 16 '../base/base.gyp:base', | 17 '../base/base.gyp:base', |
| 17 '../chromeos/chromeos.gyp:chromeos', | 18 '../chromeos/chromeos.gyp:chromeos', |
| 18 '../chromeos/chromeos.gyp:power_manager_proto', | 19 '../chromeos/chromeos.gyp:power_manager_proto', |
| 19 '../ipc/ipc.gyp:ipc', | 20 '../ipc/ipc.gyp:ipc', |
| 20 '../ui/arc/arc.gyp:arc', | 21 '../ui/arc/arc.gyp:arc', |
| 21 '../ui/aura/aura.gyp:aura', | 22 '../ui/aura/aura.gyp:aura', |
| 22 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', | 23 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', |
| 23 '../ui/base/ui_base.gyp:ui_base', | 24 '../ui/base/ui_base.gyp:ui_base', |
| 24 '../ui/events/events.gyp:events_base', | 25 '../ui/events/events.gyp:events_base', |
| 25 ], | 26 ], |
| (...skipping 10 matching lines...) Expand all Loading... |
| 36 'arc/arc_service_manager.h', | 37 'arc/arc_service_manager.h', |
| 37 'arc/clipboard/arc_clipboard_bridge.cc', | 38 'arc/clipboard/arc_clipboard_bridge.cc', |
| 38 'arc/clipboard/arc_clipboard_bridge.h', | 39 'arc/clipboard/arc_clipboard_bridge.h', |
| 39 'arc/ime/arc_ime_bridge.cc', | 40 'arc/ime/arc_ime_bridge.cc', |
| 40 'arc/ime/arc_ime_bridge.h', | 41 'arc/ime/arc_ime_bridge.h', |
| 41 'arc/ime/arc_ime_ipc_host.h', | 42 'arc/ime/arc_ime_ipc_host.h', |
| 42 'arc/ime/arc_ime_ipc_host_impl.cc', | 43 'arc/ime/arc_ime_ipc_host_impl.cc', |
| 43 'arc/ime/arc_ime_ipc_host_impl.h', | 44 'arc/ime/arc_ime_ipc_host_impl.h', |
| 44 'arc/input/arc_input_bridge.cc', | 45 'arc/input/arc_input_bridge.cc', |
| 45 'arc/input/arc_input_bridge.h', | 46 'arc/input/arc_input_bridge.h', |
| 47 'arc/net/arc_net_host_impl.cc', |
| 48 'arc/net/arc_net_host_impl.h', |
| 46 'arc/power/arc_power_bridge.cc', | 49 'arc/power/arc_power_bridge.cc', |
| 47 'arc/power/arc_power_bridge.h', | 50 'arc/power/arc_power_bridge.h', |
| 48 'arc/video/arc_video_bridge.cc', | 51 'arc/video/arc_video_bridge.cc', |
| 49 'arc/video/arc_video_bridge.h', | 52 'arc/video/arc_video_bridge.h', |
| 50 'arc/video/video_host_delegate.h', | 53 'arc/video/video_host_delegate.h', |
| 51 ], | 54 ], |
| 52 }, | 55 }, |
| 53 { | 56 { |
| 54 # GN version: //components/arc_test_support | 57 # GN version: //components/arc_test_support |
| 55 'target_name': 'arc_test_support', | 58 'target_name': 'arc_test_support', |
| (...skipping 23 matching lines...) Expand all Loading... |
| 79 '../third_party/mojo/mojom_bindings_generator.gypi', | 82 '../third_party/mojo/mojom_bindings_generator.gypi', |
| 80 ], | 83 ], |
| 81 'sources': [ | 84 'sources': [ |
| 82 'arc/common/app.mojom', | 85 'arc/common/app.mojom', |
| 83 'arc/common/arc_bridge.mojom', | 86 'arc/common/arc_bridge.mojom', |
| 84 'arc/common/auth.mojom', | 87 'arc/common/auth.mojom', |
| 85 'arc/common/clipboard.mojom', | 88 'arc/common/clipboard.mojom', |
| 86 'arc/common/ime.mojom', | 89 'arc/common/ime.mojom', |
| 87 'arc/common/input.mojom', | 90 'arc/common/input.mojom', |
| 88 'arc/common/intent_helper.mojom', | 91 'arc/common/intent_helper.mojom', |
| 92 'arc/common/net.mojom', |
| 89 'arc/common/notifications.mojom', | 93 'arc/common/notifications.mojom', |
| 90 'arc/common/power.mojom', | 94 'arc/common/power.mojom', |
| 91 'arc/common/process.mojom', | 95 'arc/common/process.mojom', |
| 92 'arc/common/settings.mojom', | 96 'arc/common/settings.mojom', |
| 93 'arc/common/video.mojom', | 97 'arc/common/video.mojom', |
| 94 ], | 98 ], |
| 95 }, | 99 }, |
| 96 ], | 100 ], |
| 97 } | 101 } |
| OLD | NEW |