| 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 # There should be only one resource coordinator. It is currently | 5 # There should be only one resource coordinator. It is currently |
| 6 # in the browser process. So, only //content/browser should link to this target. | 6 # in the browser process. So, only //content/browser should link to this target. |
| 7 # Others modules should only need the public targets. | 7 # Others modules should only need the public targets. |
| 8 import("//services/catalog/public/tools/catalog.gni") | 8 import("//services/catalog/public/tools/catalog.gni") |
| 9 import("//services/service_manager/public/cpp/service.gni") | 9 import("//services/service_manager/public/cpp/service.gni") |
| 10 import("//services/service_manager/public/service_manifest.gni") | 10 import("//services/service_manager/public/service_manifest.gni") |
| (...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 57 | 57 |
| 58 sources = [ | 58 sources = [ |
| 59 "coordination_unit/coordination_unit_impl_unittest.cc", | 59 "coordination_unit/coordination_unit_impl_unittest.cc", |
| 60 "coordination_unit/coordination_unit_impl_unittest_util.cc", | 60 "coordination_unit/coordination_unit_impl_unittest_util.cc", |
| 61 "coordination_unit/coordination_unit_impl_unittest_util.h", | 61 "coordination_unit/coordination_unit_impl_unittest_util.h", |
| 62 "coordination_unit/process_coordination_unit_impl_unittest.cc", | 62 "coordination_unit/process_coordination_unit_impl_unittest.cc", |
| 63 "memory_instrumentation/coordinator_impl_unittest.cc", | 63 "memory_instrumentation/coordinator_impl_unittest.cc", |
| 64 "memory_instrumentation/process_map_unittest.cc", | 64 "memory_instrumentation/process_map_unittest.cc", |
| 65 "public/cpp/memory_instrumentation/client_process_impl_unittest.cc", | 65 "public/cpp/memory_instrumentation/client_process_impl_unittest.cc", |
| 66 "public/cpp/tracing/chrome_trace_event_agent_unittest.cc", | 66 "public/cpp/tracing/chrome_trace_event_agent_unittest.cc", |
| 67 "tracing/agent_registry_unittest.cc", |
| 67 "tracing/recorder_unittest.cc", | 68 "tracing/recorder_unittest.cc", |
| 68 ] | 69 ] |
| 69 | 70 |
| 70 if (!is_android) { | 71 if (!is_android) { |
| 71 sources += [ "resource_coordinator_service_unittest.cc" ] | 72 sources += [ "resource_coordinator_service_unittest.cc" ] |
| 72 } | 73 } |
| 73 | 74 |
| 74 deps = [ | 75 deps = [ |
| 75 ":lib", | 76 ":lib", |
| 76 "//base", | 77 "//base", |
| (...skipping 16 matching lines...) Expand all Loading... |
| 93 service_manifest("unittest_manifest") { | 94 service_manifest("unittest_manifest") { |
| 94 name = "resource_coordinator_unittests" | 95 name = "resource_coordinator_unittests" |
| 95 source = "unittest_manifest.json" | 96 source = "unittest_manifest.json" |
| 96 } | 97 } |
| 97 | 98 |
| 98 catalog("tests_catalog") { | 99 catalog("tests_catalog") { |
| 99 testonly = true | 100 testonly = true |
| 100 embedded_services = [ ":unittest_manifest" ] | 101 embedded_services = [ ":unittest_manifest" ] |
| 101 standalone_services = [ ":manifest" ] | 102 standalone_services = [ ":manifest" ] |
| 102 } | 103 } |
| OLD | NEW |