| OLD | NEW |
| 1 # Copyright 2017 The Chromium Authors. All rights reserved. | 1 # Copyright 2017 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 component("embedder") { | 5 component("embedder") { |
| 6 sources = [ | 6 sources = [ |
| 7 "main.cc", | 7 "main.cc", |
| 8 "main.h", | 8 "main.h", |
| 9 "main_delegate.cc", | 9 "main_delegate.cc", |
| 10 "main_delegate.h", | 10 "main_delegate.h", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 31 | 31 |
| 32 deps = [ | 32 deps = [ |
| 33 "//base:base_static", | 33 "//base:base_static", |
| 34 "//base/allocator:features", | 34 "//base/allocator:features", |
| 35 "//components/tracing:startup_tracing", | 35 "//components/tracing:startup_tracing", |
| 36 "//ui/base", | 36 "//ui/base", |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 public_deps = [ | 39 public_deps = [ |
| 40 "//base", | 40 "//base", |
| 41 "//content/public/common:service_names", |
| 41 "//mojo/edk/system", | 42 "//mojo/edk/system", |
| 43 "//services/resource_coordinator/public/cpp:resource_coordinator_cpp", |
| 42 "//services/service_manager/background:lib", | 44 "//services/service_manager/background:lib", |
| 43 "//services/service_manager/public/cpp", | 45 "//services/service_manager/public/cpp", |
| 44 "//services/service_manager/public/cpp/standalone_service", | 46 "//services/service_manager/public/cpp/standalone_service", |
| 45 "//services/service_manager/runner:init", | 47 "//services/service_manager/runner:init", |
| 46 "//services/service_manager/runner/common", | 48 "//services/service_manager/runner/common", |
| 47 ] | 49 ] |
| 48 | 50 |
| 49 defines = [ "SERVICE_MANAGER_EMBEDDER_IMPL" ] | 51 defines = [ "SERVICE_MANAGER_EMBEDDER_IMPL" ] |
| 50 } | 52 } |
| OLD | NEW |