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 # GYP version: mojo/mojo_base.gyp:mojo_application_base | 5 # GYP version: mojo/mojo_base.gyp:mojo_application_base |
6 source_set("cpp") { | 6 source_set("cpp") { |
7 public_deps = [ | 7 public_deps = [ |
8 ":sources", | 8 ":sources", |
9 ] | 9 ] |
10 } | 10 } |
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
61 "lib/initialize_base_and_icu.cc", | 61 "lib/initialize_base_and_icu.cc", |
62 ] | 62 ] |
63 | 63 |
64 deps = [ | 64 deps = [ |
65 "//base", | 65 "//base", |
66 "//base:i18n", | 66 "//base:i18n", |
67 "//mojo/public/c/system", | 67 "//mojo/public/c/system", |
68 ] | 68 ] |
69 } | 69 } |
70 | 70 |
71 source_set("shell_test_support") { | 71 source_set("service_test_support") { |
72 testonly = true | 72 testonly = true |
73 sources = [ | 73 sources = [ |
74 "lib/shell_test.cc", | 74 "lib/service_test.cc", |
75 "shell_test.h", | 75 "service_test.h", |
76 ] | 76 ] |
77 | 77 |
78 public_deps = [ | 78 public_deps = [ |
79 ":cpp", | 79 ":cpp", |
80 "//testing/gtest", | 80 "//testing/gtest", |
81 ] | 81 ] |
82 | 82 |
83 deps = [ | 83 deps = [ |
84 "//base", | 84 "//base", |
85 "//base/test:test_support", | 85 "//base/test:test_support", |
86 "//mojo/public/cpp/bindings", | 86 "//mojo/public/cpp/bindings", |
87 "//mojo/public/cpp/system", | 87 "//mojo/public/cpp/system", |
88 "//services/shell/background:lib", | 88 "//services/shell/background:lib", |
89 "//services/shell/public/interfaces:interfaces_cpp_sources", | 89 "//services/shell/public/interfaces:interfaces_cpp_sources", |
90 ] | 90 ] |
91 | 91 |
92 data_deps = [] | 92 data_deps = [] |
93 } | 93 } |
94 } | 94 } |
OLD | NEW |