Chromium Code Reviews| 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 import("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 static_library("arc") { | 8 static_library("arc") { |
| 9 sources = [ | 9 sources = [ |
| 10 "arc_bridge_bootstrap.cc", | 10 "arc_bridge_bootstrap.cc", |
| (...skipping 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 47 "metrics/oom_kills_monitor.h", | 47 "metrics/oom_kills_monitor.h", |
| 48 "net/arc_net_host_impl.cc", | 48 "net/arc_net_host_impl.cc", |
| 49 "net/arc_net_host_impl.h", | 49 "net/arc_net_host_impl.h", |
| 50 "obb_mounter/arc_obb_mounter_bridge.cc", | 50 "obb_mounter/arc_obb_mounter_bridge.cc", |
| 51 "obb_mounter/arc_obb_mounter_bridge.h", | 51 "obb_mounter/arc_obb_mounter_bridge.h", |
| 52 "power/arc_power_bridge.cc", | 52 "power/arc_power_bridge.cc", |
| 53 "power/arc_power_bridge.h", | 53 "power/arc_power_bridge.h", |
| 54 "set_wallpaper_delegate.h", | 54 "set_wallpaper_delegate.h", |
| 55 "storage_manager/arc_storage_manager.cc", | 55 "storage_manager/arc_storage_manager.cc", |
| 56 "storage_manager/arc_storage_manager.h", | 56 "storage_manager/arc_storage_manager.h", |
| 57 "tts/arc_tts_service.cc", | |
|
hidehiko
2016/07/26 17:59:18
Could you update gyp file, too?
David Tseng
2016/07/27 22:50:59
Acknowledged.
| |
| 58 "tts/arc_tts_service.h", | |
| 57 "user_data/arc_user_data_service.cc", | 59 "user_data/arc_user_data_service.cc", |
| 58 "user_data/arc_user_data_service.h", | 60 "user_data/arc_user_data_service.h", |
| 59 "window_manager/arc_window_manager_bridge.cc", | 61 "window_manager/arc_window_manager_bridge.cc", |
| 60 "window_manager/arc_window_manager_bridge.h", | 62 "window_manager/arc_window_manager_bridge.h", |
| 61 ] | 63 ] |
| 62 | 64 |
| 63 deps = [ | 65 deps = [ |
| 64 ":arc_base", | 66 ":arc_base", |
| 65 "//ash:ash", | 67 "//ash:ash", |
| 66 "//base", | 68 "//base", |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 144 "common/metrics.mojom", | 146 "common/metrics.mojom", |
| 145 "common/net.mojom", | 147 "common/net.mojom", |
| 146 "common/notifications.mojom", | 148 "common/notifications.mojom", |
| 147 "common/obb_mounter.mojom", | 149 "common/obb_mounter.mojom", |
| 148 "common/policy.mojom", | 150 "common/policy.mojom", |
| 149 "common/power.mojom", | 151 "common/power.mojom", |
| 150 "common/process.mojom", | 152 "common/process.mojom", |
| 151 "common/scale_factor.mojom", | 153 "common/scale_factor.mojom", |
| 152 "common/screen_rect.mojom", | 154 "common/screen_rect.mojom", |
| 153 "common/storage_manager.mojom", | 155 "common/storage_manager.mojom", |
| 156 "common/tts.mojom", | |
| 154 "common/video.mojom", | 157 "common/video.mojom", |
| 155 "common/video_accelerator.mojom", | 158 "common/video_accelerator.mojom", |
| 156 "common/window_manager.mojom", | 159 "common/window_manager.mojom", |
| 157 ] | 160 ] |
| 158 | 161 |
| 159 deps = [ | 162 deps = [ |
| 160 "//ui/gfx/geometry/mojo", | 163 "//ui/gfx/geometry/mojo", |
| 161 ] | 164 ] |
| 162 | 165 |
| 163 use_new_wrapper_types = false | 166 use_new_wrapper_types = false |
| (...skipping 97 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 261 ] | 264 ] |
| 262 | 265 |
| 263 deps = [ | 266 deps = [ |
| 264 ":arc_standalone", | 267 ":arc_standalone", |
| 265 ":arc_standalone_service", | 268 ":arc_standalone_service", |
| 266 "//base", | 269 "//base", |
| 267 "//ipc:ipc", | 270 "//ipc:ipc", |
| 268 "//mojo/edk/system", | 271 "//mojo/edk/system", |
| 269 ] | 272 ] |
| 270 } | 273 } |
| OLD | NEW |