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 ":init_commandline", | 8 ":init_commandline", |
9 ":sources", | 9 ":sources", |
10 ] | 10 ] |
(...skipping 68 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
79 public_deps = [ | 79 public_deps = [ |
80 ":cpp", | 80 ":cpp", |
81 "//testing/gtest", | 81 "//testing/gtest", |
82 ] | 82 ] |
83 | 83 |
84 deps = [ | 84 deps = [ |
85 "//base", | 85 "//base", |
86 "//base/test:test_support", | 86 "//base/test:test_support", |
87 "//mojo/logging", | 87 "//mojo/logging", |
88 "//mojo/public/cpp/bindings", | 88 "//mojo/public/cpp/bindings", |
89 "//mojo/public/cpp/environment", | |
90 "//mojo/public/cpp/system", | 89 "//mojo/public/cpp/system", |
91 "//mojo/shell/public/interfaces:interfaces_cpp_sources", | 90 "//mojo/shell/public/interfaces:interfaces_cpp_sources", |
92 ] | 91 ] |
93 | 92 |
94 data_deps = [] | 93 data_deps = [] |
95 } | 94 } |
96 | 95 |
97 source_set("shell_test_support") { | 96 source_set("shell_test_support") { |
98 testonly = true | 97 testonly = true |
99 sources = [ | 98 sources = [ |
100 "lib/shell_test.cc", | 99 "lib/shell_test.cc", |
101 "shell_test.h", | 100 "shell_test.h", |
102 ] | 101 ] |
103 | 102 |
104 public_deps = [ | 103 public_deps = [ |
105 ":cpp", | 104 ":cpp", |
106 "//testing/gtest", | 105 "//testing/gtest", |
107 ] | 106 ] |
108 | 107 |
109 deps = [ | 108 deps = [ |
110 "//base", | 109 "//base", |
111 "//base/test:test_support", | 110 "//base/test:test_support", |
112 "//mojo/logging", | 111 "//mojo/logging", |
113 "//mojo/public/cpp/bindings", | 112 "//mojo/public/cpp/bindings", |
114 "//mojo/public/cpp/environment", | |
115 "//mojo/public/cpp/system", | 113 "//mojo/public/cpp/system", |
116 "//mojo/shell/background:lib", | 114 "//mojo/shell/background:lib", |
117 "//mojo/shell/public/interfaces:interfaces_cpp_sources", | 115 "//mojo/shell/public/interfaces:interfaces_cpp_sources", |
118 ] | 116 ] |
119 | 117 |
120 data_deps = [] | 118 data_deps = [] |
121 } | 119 } |
OLD | NEW |