| 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 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "lib/init_commandline.cc", | 66 "lib/init_commandline.cc", |
| 67 ] | 67 ] |
| 68 } | 68 } |
| 69 | 69 |
| 70 source_set("test_support") { | 70 source_set("test_support") { |
| 71 testonly = true | 71 testonly = true |
| 72 sources = [ | 72 sources = [ |
| 73 "application_test_base.h", | 73 "application_test_base.h", |
| 74 "lib/application_test_base.cc", | 74 "lib/application_test_base.cc", |
| 75 "lib/application_test_main.cc", | 75 "lib/application_test_main.cc", |
| 76 "lib/shell_test.cc", |
| 77 "shell_test.h", |
| 76 ] | 78 ] |
| 77 | 79 |
| 78 public_deps = [ | 80 public_deps = [ |
| 79 ":cpp", | 81 ":cpp", |
| 80 "//testing/gtest", | 82 "//testing/gtest", |
| 81 ] | 83 ] |
| 82 | 84 |
| 83 deps = [ | 85 deps = [ |
| 84 "//base", | 86 "//base", |
| 85 "//base/test:test_support", | 87 "//base/test:test_support", |
| 86 "//mojo/logging", | 88 "//mojo/logging", |
| 87 "//mojo/public/cpp/bindings", | 89 "//mojo/public/cpp/bindings", |
| 88 "//mojo/public/cpp/environment", | 90 "//mojo/public/cpp/environment", |
| 89 "//mojo/public/cpp/system", | 91 "//mojo/public/cpp/system", |
| 92 "//mojo/shell/background:lib", |
| 90 "//mojo/shell/public/interfaces:interfaces_cpp_sources", | 93 "//mojo/shell/public/interfaces:interfaces_cpp_sources", |
| 91 ] | 94 ] |
| 92 | 95 |
| 93 data_deps = [] | 96 data_deps = [] |
| 94 } | 97 } |
| OLD | NEW |