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_common_lib | 5 # GYP version: mojo/mojo_base.gyp:mojo_common_lib |
6 component("common") { | 6 component("common") { |
7 output_name = "mojo_common_lib" | 7 output_name = "mojo_common_lib" |
8 | 8 |
9 sources = [ | 9 sources = [ |
10 "common_type_converters.cc", | 10 "common_type_converters.cc", |
(...skipping 19 matching lines...) Expand all Loading... |
30 ] | 30 ] |
31 } | 31 } |
32 | 32 |
33 # GYP version: mojo/mojo_base.gyp:mojo_common_unittests | 33 # GYP version: mojo/mojo_base.gyp:mojo_common_unittests |
34 test("mojo_common_unittests") { | 34 test("mojo_common_unittests") { |
35 deps = [ | 35 deps = [ |
36 ":common", | 36 ":common", |
37 "//base", | 37 "//base", |
38 "//base:message_loop_tests", | 38 "//base:message_loop_tests", |
39 "//mojo/common/test:run_all_unittests", | 39 "//mojo/common/test:run_all_unittests", |
40 "//mojo/common/test:test_support", | 40 "//mojo/edk/test:test_support", |
41 "//mojo/environment:chromium", | 41 "//mojo/environment:chromium", |
42 "//mojo/public/cpp/bindings", | 42 "//mojo/public/cpp/bindings", |
43 "//mojo/public/cpp/test_support:test_utils", | 43 "//mojo/public/cpp/test_support:test_utils", |
44 "//testing/gtest", | 44 "//testing/gtest", |
45 "//url", | 45 "//url", |
46 ] | 46 ] |
47 | 47 |
48 sources = [ | 48 sources = [ |
49 "common_type_converters_unittest.cc", | 49 "common_type_converters_unittest.cc", |
50 "handle_watcher_unittest.cc", | 50 "handle_watcher_unittest.cc", |
51 "message_pump_mojo_unittest.cc", | 51 "message_pump_mojo_unittest.cc", |
52 "test/multiprocess_test_helper_unittest.cc", | |
53 ] | 52 ] |
54 } | 53 } |
OLD | NEW |