Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(246)

Side by Side Diff: services/service_manager/public/cpp/BUILD.gn

Issue 2862773002: Remove obsolete support code (Closed)
Patch Set: Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | services/service_manager/public/cpp/lib/init_commandline.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « no previous file | services/service_manager/public/cpp/lib/init_commandline.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698