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 # For intent_helper/open_with_menu_observer.cc. |
| 14 '../third_party/WebKit', |
13 ], | 15 ], |
14 'dependencies': [ | 16 'dependencies': [ |
15 'arc_mojo_bindings', | 17 'arc_mojo_bindings', |
16 'components.gyp:exo', | 18 'components.gyp:exo', |
17 'components.gyp:onc_component', | 19 'components.gyp:onc_component', |
| 20 'components.gyp:renderer_context_menu', |
| 21 'components_strings.gyp:components_strings', |
18 '../base/base.gyp:base', | 22 '../base/base.gyp:base', |
19 '../chromeos/chromeos.gyp:chromeos', | 23 '../chromeos/chromeos.gyp:chromeos', |
20 '../chromeos/chromeos.gyp:power_manager_proto', | 24 '../chromeos/chromeos.gyp:power_manager_proto', |
| 25 '../content/content.gyp:common_features', |
| 26 '../content/content.gyp:content_browser', |
21 '../ipc/ipc.gyp:ipc', | 27 '../ipc/ipc.gyp:ipc', |
22 '../third_party/re2/re2.gyp:re2', | 28 '../third_party/re2/re2.gyp:re2', |
23 '../ui/arc/arc.gyp:arc', | 29 '../ui/arc/arc.gyp:arc', |
24 '../ui/aura/aura.gyp:aura', | 30 '../ui/aura/aura.gyp:aura', |
25 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', | 31 '../ui/base/ime/ui_base_ime.gyp:ui_base_ime', |
26 '../ui/base/ui_base.gyp:ui_base', | 32 '../ui/base/ui_base.gyp:ui_base', |
27 '../ui/base/ui_base.gyp:ui_base_test_support', | 33 '../ui/base/ui_base.gyp:ui_base_test_support', |
28 '../ui/events/events.gyp:events_base', | 34 '../ui/events/events.gyp:events_base', |
29 '../url/url.gyp:url_lib', | 35 '../url/url.gyp:url_lib', |
30 ], | 36 ], |
(...skipping 20 matching lines...) Expand all Loading... |
51 'arc/ime/arc_ime_bridge_impl.cc', | 57 'arc/ime/arc_ime_bridge_impl.cc', |
52 'arc/ime/arc_ime_bridge_impl.h', | 58 'arc/ime/arc_ime_bridge_impl.h', |
53 'arc/ime/arc_ime_service.cc', | 59 'arc/ime/arc_ime_service.cc', |
54 'arc/ime/arc_ime_service.h', | 60 'arc/ime/arc_ime_service.h', |
55 'arc/input/arc_input_bridge.cc', | 61 'arc/input/arc_input_bridge.cc', |
56 'arc/input/arc_input_bridge.h', | 62 'arc/input/arc_input_bridge.h', |
57 'arc/intent_helper/arc_intent_helper_bridge.cc', | 63 'arc/intent_helper/arc_intent_helper_bridge.cc', |
58 'arc/intent_helper/arc_intent_helper_bridge.h', | 64 'arc/intent_helper/arc_intent_helper_bridge.h', |
59 'arc/intent_helper/font_size_util.cc', | 65 'arc/intent_helper/font_size_util.cc', |
60 'arc/intent_helper/font_size_util.h', | 66 'arc/intent_helper/font_size_util.h', |
| 67 'arc/intent_helper/open_with_menu_observer.cc', |
| 68 'arc/intent_helper/open_with_menu_observer.h', |
61 'arc/metrics/arc_low_memory_killer_monitor.cc', | 69 'arc/metrics/arc_low_memory_killer_monitor.cc', |
62 'arc/metrics/arc_low_memory_killer_monitor.h', | 70 'arc/metrics/arc_low_memory_killer_monitor.h', |
63 'arc/metrics/arc_metrics_service.cc', | 71 'arc/metrics/arc_metrics_service.cc', |
64 'arc/metrics/arc_metrics_service.h', | 72 'arc/metrics/arc_metrics_service.h', |
65 'arc/net/arc_net_host_impl.cc', | 73 'arc/net/arc_net_host_impl.cc', |
66 'arc/net/arc_net_host_impl.h', | 74 'arc/net/arc_net_host_impl.h', |
67 'arc/power/arc_power_bridge.cc', | 75 'arc/power/arc_power_bridge.cc', |
68 'arc/power/arc_power_bridge.h', | 76 'arc/power/arc_power_bridge.h', |
69 ], | 77 ], |
70 }, | 78 }, |
(...skipping 90 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
161 '../base/base.gyp:base', | 169 '../base/base.gyp:base', |
162 '../ipc/ipc.gyp:ipc', | 170 '../ipc/ipc.gyp:ipc', |
163 '../mojo/mojo_edk.gyp:mojo_system_impl', | 171 '../mojo/mojo_edk.gyp:mojo_system_impl', |
164 ], | 172 ], |
165 'sources': [ | 173 'sources': [ |
166 'arc/standalone/arc_standalone_bridge_main.cc', | 174 'arc/standalone/arc_standalone_bridge_main.cc', |
167 ] | 175 ] |
168 } | 176 } |
169 ], | 177 ], |
170 } | 178 } |
OLD | NEW |