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 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
52 ] | 52 ] |
53 | 53 |
54 deps = [ | 54 deps = [ |
55 "//base", | 55 "//base", |
56 "//base:i18n", | 56 "//base:i18n", |
57 ] | 57 ] |
58 | 58 |
59 public_deps = [ | 59 public_deps = [ |
60 "//mojo/public/cpp/bindings", | 60 "//mojo/public/cpp/bindings", |
61 "//mojo/public/cpp/system", | 61 "//mojo/public/cpp/system", |
62 "//mojo/shell/public/interfaces", | 62 "//services/shell/public/interfaces", |
63 "//url", | 63 "//url", |
64 ] | 64 ] |
65 } | 65 } |
66 | 66 |
67 source_set("init_commandline") { | 67 source_set("init_commandline") { |
68 sources = [ | 68 sources = [ |
69 "lib/init_commandline.cc", | 69 "lib/init_commandline.cc", |
70 ] | 70 ] |
71 } | 71 } |
72 | 72 |
73 source_set("test_support") { | 73 source_set("test_support") { |
74 testonly = true | 74 testonly = true |
75 sources = [ | 75 sources = [ |
76 "application_test_base.h", | 76 "application_test_base.h", |
77 "lib/application_test_base.cc", | 77 "lib/application_test_base.cc", |
78 "lib/application_test_main.cc", | 78 "lib/application_test_main.cc", |
79 ] | 79 ] |
80 | 80 |
81 public_deps = [ | 81 public_deps = [ |
82 ":cpp", | 82 ":cpp", |
83 "//testing/gtest", | 83 "//testing/gtest", |
84 ] | 84 ] |
85 | 85 |
86 deps = [ | 86 deps = [ |
87 "//base", | 87 "//base", |
88 "//base/test:test_support", | 88 "//base/test:test_support", |
89 "//mojo/logging", | 89 "//mojo/logging", |
90 "//mojo/public/cpp/bindings", | 90 "//mojo/public/cpp/bindings", |
91 "//mojo/public/cpp/system", | 91 "//mojo/public/cpp/system", |
92 "//mojo/shell/public/interfaces:interfaces_cpp_sources", | 92 "//services/shell/public/interfaces:interfaces_cpp_sources", |
93 ] | 93 ] |
94 | 94 |
95 data_deps = [] | 95 data_deps = [] |
96 } | 96 } |
97 | 97 |
98 source_set("shell_test_support") { | 98 source_set("shell_test_support") { |
99 testonly = true | 99 testonly = true |
100 sources = [ | 100 sources = [ |
101 "lib/shell_test.cc", | 101 "lib/shell_test.cc", |
102 "shell_test.h", | 102 "shell_test.h", |
103 ] | 103 ] |
104 | 104 |
105 public_deps = [ | 105 public_deps = [ |
106 ":cpp", | 106 ":cpp", |
107 "//testing/gtest", | 107 "//testing/gtest", |
108 ] | 108 ] |
109 | 109 |
110 deps = [ | 110 deps = [ |
111 "//base", | 111 "//base", |
112 "//base/test:test_support", | 112 "//base/test:test_support", |
113 "//mojo/logging", | 113 "//mojo/logging", |
114 "//mojo/public/cpp/bindings", | 114 "//mojo/public/cpp/bindings", |
115 "//mojo/public/cpp/system", | 115 "//mojo/public/cpp/system", |
116 "//mojo/shell/background:lib", | 116 "//services/shell/background:lib", |
117 "//mojo/shell/public/interfaces:interfaces_cpp_sources", | 117 "//services/shell/public/interfaces:interfaces_cpp_sources", |
118 ] | 118 ] |
119 | 119 |
120 data_deps = [] | 120 data_deps = [] |
121 } | 121 } |
OLD | NEW |