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 import("//testing/test.gni") | 5 import("//testing/test.gni") |
6 | 6 |
7 group("common") { | 7 group("common") { |
8 public_deps = [ | 8 public_deps = [ |
9 ":common_base", | 9 ":common_base", |
10 ":url_type_converters", | 10 ":url_type_converters", |
(...skipping 13 matching lines...) Expand all Loading... |
24 "data_pipe_utils.cc", | 24 "data_pipe_utils.cc", |
25 "data_pipe_utils.h", | 25 "data_pipe_utils.h", |
26 "user_agent.cc", | 26 "user_agent.cc", |
27 "user_agent.h", | 27 "user_agent.h", |
28 "weak_binding_set.h", | 28 "weak_binding_set.h", |
29 "weak_interface_ptr_set.h", | 29 "weak_interface_ptr_set.h", |
30 ] | 30 ] |
31 | 31 |
32 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] | 32 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] |
33 | 33 |
| 34 public_deps = [ |
| 35 "//third_party/mojo/src/mojo/public/cpp/system", |
| 36 ] |
| 37 |
34 deps = [ | 38 deps = [ |
35 "//base", | 39 "//base", |
36 "//base/third_party/dynamic_annotations", | 40 "//base/third_party/dynamic_annotations", |
37 "//mojo/environment:chromium", | 41 "//mojo/environment:chromium", |
38 "//mojo/message_pump", | 42 "//mojo/message_pump", |
39 "//third_party/mojo/src/mojo/public/c/system:for_component", | 43 "//third_party/mojo/src/mojo/public/c/system:for_component", |
40 "//third_party/mojo/src/mojo/public/cpp/bindings", | 44 "//third_party/mojo/src/mojo/public/cpp/bindings", |
41 "//third_party/mojo/src/mojo/public/cpp/environment", | 45 "//third_party/mojo/src/mojo/public/cpp/environment", |
42 "//third_party/mojo/src/mojo/public/cpp/system", | |
43 ] | 46 ] |
44 } | 47 } |
45 | 48 |
46 # GYP version: mojo/mojo_base.gyp:mojo_url_type_converters | 49 # GYP version: mojo/mojo_base.gyp:mojo_url_type_converters |
47 source_set("url_type_converters") { | 50 source_set("url_type_converters") { |
48 sources = [ | 51 sources = [ |
49 "url_type_converters.cc", | 52 "url_type_converters.cc", |
50 "url_type_converters.h", | 53 "url_type_converters.h", |
51 ] | 54 ] |
52 | 55 |
(...skipping 35 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
88 ] | 91 ] |
89 | 92 |
90 sources = [ | 93 sources = [ |
91 # The message_pump tests are so small and some what related to this code | 94 # The message_pump tests are so small and some what related to this code |
92 # that we put them here. | 95 # that we put them here. |
93 "../message_pump/handle_watcher_unittest.cc", | 96 "../message_pump/handle_watcher_unittest.cc", |
94 "../message_pump/message_pump_mojo_unittest.cc", | 97 "../message_pump/message_pump_mojo_unittest.cc", |
95 "common_type_converters_unittest.cc", | 98 "common_type_converters_unittest.cc", |
96 ] | 99 ] |
97 } | 100 } |
OLD | NEW |