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/public/mojo_public.gyp:mojo_application_base | 5 # GYP version: mojo/public/mojo_public.gyp:mojo_application_base |
6 source_set("application") { | 6 source_set("application") { |
7 sources = [ | 7 sources = [ |
8 "application_connection.h", | 8 "application_connection.h", |
9 "application_delegate.h", | 9 "application_delegate.h", |
10 "application_impl.h", | 10 "application_impl.h", |
(...skipping 46 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
57 ":application", | 57 ":application", |
58 "//mojo/public/cpp/bindings", | 58 "//mojo/public/cpp/bindings", |
59 "//mojo/public/cpp/environment", | 59 "//mojo/public/cpp/environment", |
60 "//mojo/public/cpp/system", | 60 "//mojo/public/cpp/system", |
61 "//testing/gtest", | 61 "//testing/gtest", |
62 ] | 62 ] |
63 } | 63 } |
64 | 64 |
65 source_set("test_support_standalone") { | 65 source_set("test_support_standalone") { |
66 testonly = true | 66 testonly = true |
67 sources = [ "lib/application_test_main.cc", ] | 67 sources = [ "lib/application_test_main.cc" ] |
68 public_deps = [ ":test_support", ] | 68 |
| 69 public_deps = [ ":test_support" ] |
69 deps = [ | 70 deps = [ |
| 71 ":application", |
70 "//mojo/public/cpp/environment:standalone", | 72 "//mojo/public/cpp/environment:standalone", |
71 "//mojo/public/cpp/application", | |
72 "//mojo/public/cpp/system", | 73 "//mojo/public/cpp/system", |
| 74 "//mojo/public/cpp/utility", |
73 ] | 75 ] |
74 } | 76 } |
OLD | NEW |