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", |
11 ] | 11 ] |
12 } | 12 } |
13 | 13 |
14 # GYP version: mojo/mojo_base.gyp:mojo_common_lib | 14 # GYP version: mojo/mojo_base.gyp:mojo_common_lib |
15 component("common_base") { | 15 component("common_base") { |
16 output_name = "mojo_common_lib" | 16 output_name = "mojo_common_lib" |
17 | 17 |
18 sources = [ | 18 sources = [ |
19 "common_type_converters.cc", | 19 "common_type_converters.cc", |
20 "common_type_converters.h", | 20 "common_type_converters.h", |
21 "data_pipe_drainer.cc", | 21 "data_pipe_drainer.cc", |
22 "data_pipe_drainer.h", | 22 "data_pipe_drainer.h", |
23 "data_pipe_file_utils.cc", | 23 "data_pipe_file_utils.cc", |
24 "data_pipe_utils.cc", | 24 "data_pipe_utils.cc", |
25 "data_pipe_utils.h", | 25 "data_pipe_utils.h", |
| 26 "service_set.h", |
26 "user_agent.cc", | 27 "user_agent.cc", |
27 "user_agent.h", | 28 "user_agent.h", |
28 "weak_binding_set.h", | 29 "weak_binding_set.h", |
29 "weak_interface_ptr_set.h", | 30 "weak_interface_ptr_set.h", |
30 ] | 31 ] |
31 | 32 |
32 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] | 33 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] |
33 | 34 |
34 deps = [ | 35 deps = [ |
35 "//base", | 36 "//base", |
(...skipping 41 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
77 "//base", | 78 "//base", |
78 "//base:message_loop_tests", | 79 "//base:message_loop_tests", |
79 "//base/test:test_support", | 80 "//base/test:test_support", |
80 "//mojo/environment:chromium", | 81 "//mojo/environment:chromium", |
81 "//mojo/message_pump", | 82 "//mojo/message_pump", |
82 "//testing/gtest", | 83 "//testing/gtest", |
83 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | 84 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
84 "//third_party/mojo/src/mojo/edk/test:test_support", | 85 "//third_party/mojo/src/mojo/edk/test:test_support", |
85 "//third_party/mojo/src/mojo/public/cpp/bindings", | 86 "//third_party/mojo/src/mojo/public/cpp/bindings", |
86 "//third_party/mojo/src/mojo/public/cpp/test_support:test_utils", | 87 "//third_party/mojo/src/mojo/public/cpp/test_support:test_utils", |
| 88 "//third_party/mojo/src/mojo/public/interfaces/bindings/tests:test_interface
s", |
87 "//url", | 89 "//url", |
88 ] | 90 ] |
89 | 91 |
90 sources = [ | 92 sources = [ |
91 # The message_pump tests are so small and some what related to this code | 93 # The message_pump tests are so small and some what related to this code |
92 # that we put them here. | 94 # that we put them here. |
93 "../message_pump/handle_watcher_unittest.cc", | 95 "../message_pump/handle_watcher_unittest.cc", |
94 "../message_pump/message_pump_mojo_unittest.cc", | 96 "../message_pump/message_pump_mojo_unittest.cc", |
95 "common_type_converters_unittest.cc", | 97 "common_type_converters_unittest.cc", |
| 98 "service_set_unittest.cc", |
96 ] | 99 ] |
97 } | 100 } |
OLD | NEW |