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