| 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 29 matching lines...) Expand all Loading... |
| 40 public_deps = [ | 40 public_deps = [ |
| 41 "//base", | 41 "//base", |
| 42 "//mojo/public/cpp/bindings", | 42 "//mojo/public/cpp/bindings", |
| 43 "//mojo/public/cpp/system", | 43 "//mojo/public/cpp/system", |
| 44 "//services/service_manager/public/interfaces", | 44 "//services/service_manager/public/interfaces", |
| 45 "//url", | 45 "//url", |
| 46 ] | 46 ] |
| 47 } | 47 } |
| 48 | 48 |
| 49 if (!is_ios) { | 49 if (!is_ios) { |
| 50 # This cannot be a static library because it needs to export the symbols from | |
| 51 # initialize_base_and_icu.cc. | |
| 52 source_set("application_support") { | |
| 53 sources = [ | |
| 54 "lib/init_commandline.cc", | |
| 55 "lib/initialize_base_and_icu.cc", | |
| 56 ] | |
| 57 | |
| 58 deps = [ | |
| 59 "//base", | |
| 60 "//base:i18n", | |
| 61 "//mojo/public/c/system", | |
| 62 ] | |
| 63 } | |
| 64 | |
| 65 static_library("service_test_support") { | 50 static_library("service_test_support") { |
| 66 testonly = true | 51 testonly = true |
| 67 sources = [ | 52 sources = [ |
| 68 "lib/service_test.cc", | 53 "lib/service_test.cc", |
| 69 "service_test.h", | 54 "service_test.h", |
| 70 ] | 55 ] |
| 71 | 56 |
| 72 public_deps = [ | 57 public_deps = [ |
| 73 ":cpp", | 58 ":cpp", |
| 74 "//testing/gtest", | 59 "//testing/gtest", |
| 75 ] | 60 ] |
| 76 | 61 |
| 77 deps = [ | 62 deps = [ |
| 78 "//base", | 63 "//base", |
| 79 "//base/test:test_support", | 64 "//base/test:test_support", |
| 80 "//mojo/edk/system", | 65 "//mojo/edk/system", |
| 81 "//mojo/public/cpp/bindings", | 66 "//mojo/public/cpp/bindings", |
| 82 "//mojo/public/cpp/system", | 67 "//mojo/public/cpp/system", |
| 83 "//services/service_manager/background:lib", | 68 "//services/service_manager/background:lib", |
| 84 "//services/service_manager/public/interfaces", | 69 "//services/service_manager/public/interfaces", |
| 85 ] | 70 ] |
| 86 | 71 |
| 87 data_deps = [] | 72 data_deps = [] |
| 88 } | 73 } |
| 89 } | 74 } |
| OLD | NEW |