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 17 matching lines...) Expand all Loading... |
28 "//mojo/public/cpp/bindings", | 28 "//mojo/public/cpp/bindings", |
29 "//mojo/public/cpp/environment", | 29 "//mojo/public/cpp/environment", |
30 "//mojo/public/cpp/system", | 30 "//mojo/public/cpp/system", |
31 "//mojo/public/interfaces/application", | 31 "//mojo/public/interfaces/application", |
32 ] | 32 ] |
33 } | 33 } |
34 | 34 |
35 # GYP version: mojo/public/mojo_public.gyp:mojo_application_standalone | 35 # GYP version: mojo/public/mojo_public.gyp:mojo_application_standalone |
36 source_set("standalone") { | 36 source_set("standalone") { |
37 sources = [ | 37 sources = [ |
38 "lib/application_runner.cc" | 38 "lib/application_runner.cc", |
39 ] | 39 ] |
40 | 40 |
41 public_deps = [ ":application" ] | 41 public_deps = [ |
| 42 ":application", |
| 43 ] |
42 | 44 |
43 deps = [ | 45 deps = [ |
44 "//mojo/public/cpp/environment:standalone", | 46 "//mojo/public/cpp/environment:standalone", |
45 "//mojo/public/cpp/utility", | 47 "//mojo/public/cpp/utility", |
46 ] | 48 ] |
47 } | 49 } |
48 | 50 |
49 source_set("test_support") { | 51 source_set("test_support") { |
50 testonly = true | 52 testonly = true |
51 sources = [ | 53 sources = [ |
52 "application_test_base.h", | 54 "application_test_base.h", |
53 "lib/application_test_base.cc", | 55 "lib/application_test_base.cc", |
54 ] | 56 ] |
55 | 57 |
56 deps = [ | 58 deps = [ |
57 ":application", | 59 ":application", |
58 "//mojo/public/cpp/bindings", | 60 "//mojo/public/cpp/bindings", |
59 "//mojo/public/cpp/environment", | 61 "//mojo/public/cpp/environment", |
60 "//mojo/public/cpp/system", | 62 "//mojo/public/cpp/system", |
61 "//testing/gtest", | 63 "//testing/gtest", |
62 ] | 64 ] |
63 } | 65 } |
64 | 66 |
65 source_set("test_support_standalone") { | 67 source_set("test_support_standalone") { |
66 testonly = true | 68 testonly = true |
67 sources = [ "lib/application_test_main.cc" ] | 69 sources = [ |
| 70 "lib/application_test_main.cc", |
| 71 ] |
68 | 72 |
69 public_deps = [ ":test_support" ] | 73 public_deps = [ |
| 74 ":test_support", |
| 75 ] |
70 deps = [ | 76 deps = [ |
71 ":application", | 77 ":application", |
72 "//mojo/public/cpp/environment:standalone", | 78 "//mojo/public/cpp/environment:standalone", |
73 "//mojo/public/cpp/system", | 79 "//mojo/public/cpp/system", |
74 "//mojo/public/cpp/utility", | 80 "//mojo/public/cpp/utility", |
75 ] | 81 ] |
76 } | 82 } |
OLD | NEW |