| OLD | NEW | 
|---|
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 group("cpp") { | 5 group("cpp") { | 
| 6   public_deps = [ | 6   public_deps = [ | 
| 7     ":sources", | 7     ":sources", | 
| 8   ] | 8   ] | 
| 9 } | 9 } | 
| 10 | 10 | 
| (...skipping 21 matching lines...) Expand all  Loading... | 
| 32     "lib/identity.cc", | 32     "lib/identity.cc", | 
| 33     "lib/interface_factory_binder.h", | 33     "lib/interface_factory_binder.h", | 
| 34     "lib/interface_provider.cc", | 34     "lib/interface_provider.cc", | 
| 35     "lib/interface_provider_spec.cc", | 35     "lib/interface_provider_spec.cc", | 
| 36     "lib/interface_registry.cc", | 36     "lib/interface_registry.cc", | 
| 37     "lib/service.cc", | 37     "lib/service.cc", | 
| 38     "lib/service_context.cc", | 38     "lib/service_context.cc", | 
| 39     "lib/service_context_ref.cc", | 39     "lib/service_context_ref.cc", | 
| 40     "lib/service_info.cc", | 40     "lib/service_info.cc", | 
| 41     "lib/service_runner.cc", | 41     "lib/service_runner.cc", | 
|  | 42     "lib/shared_file_util.cc", | 
| 42     "service.h", | 43     "service.h", | 
| 43     "service_context.h", | 44     "service_context.h", | 
| 44     "service_context_ref.h", | 45     "service_context_ref.h", | 
| 45     "service_info.h", | 46     "service_info.h", | 
| 46     "service_runner.h", | 47     "service_runner.h", | 
|  | 48     "shared_file_util.h", | 
| 47   ] | 49   ] | 
| 48 | 50 | 
| 49   public_deps = [ | 51   public_deps = [ | 
| 50     "//base", | 52     "//base", | 
| 51     "//mojo/public/cpp/bindings", | 53     "//mojo/public/cpp/bindings", | 
| 52     "//mojo/public/cpp/system", | 54     "//mojo/public/cpp/system", | 
| 53     "//services/service_manager/public/interfaces", | 55     "//services/service_manager/public/interfaces", | 
| 54     "//url", | 56     "//url", | 
| 55   ] | 57   ] | 
| 56 } | 58 } | 
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after  Loading... | 
| 89       "//mojo/edk/system", | 91       "//mojo/edk/system", | 
| 90       "//mojo/public/cpp/bindings", | 92       "//mojo/public/cpp/bindings", | 
| 91       "//mojo/public/cpp/system", | 93       "//mojo/public/cpp/system", | 
| 92       "//services/service_manager/background:lib", | 94       "//services/service_manager/background:lib", | 
| 93       "//services/service_manager/public/interfaces", | 95       "//services/service_manager/public/interfaces", | 
| 94     ] | 96     ] | 
| 95 | 97 | 
| 96     data_deps = [] | 98     data_deps = [] | 
| 97   } | 99   } | 
| 98 } | 100 } | 
| OLD | NEW | 
|---|