| 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 deps = [ | 8 deps = [ |
| 9 ":common_base", | 9 ":common_base", |
| 10 ":url_type_converters", | 10 ":url_type_converters", |
| (...skipping 43 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 54 | 54 |
| 55 deps = [ | 55 deps = [ |
| 56 ":common_base", | 56 ":common_base", |
| 57 "//base", | 57 "//base", |
| 58 "//base/third_party/dynamic_annotations", | 58 "//base/third_party/dynamic_annotations", |
| 59 "//third_party/mojo/src/mojo/public/cpp/bindings", | 59 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 60 "//url", | 60 "//url", |
| 61 ] | 61 ] |
| 62 } | 62 } |
| 63 | 63 |
| 64 # TODO(GYP): Delete this after we've converted everything to GN. |
| 65 # The _run targets exist only for compatibility w/ GYP. |
| 66 group("mojo_common_unittests_run") { |
| 67 testonly = true |
| 68 deps = [ |
| 69 ":mojo_common_unittests", |
| 70 ] |
| 71 } |
| 72 |
| 64 # GYP version: mojo/mojo_base.gyp:mojo_common_unittests | 73 # GYP version: mojo/mojo_base.gyp:mojo_common_unittests |
| 65 test("mojo_common_unittests") { | 74 test("mojo_common_unittests") { |
| 66 deps = [ | 75 deps = [ |
| 67 ":common", | 76 ":common", |
| 68 "//base", | 77 "//base", |
| 69 "//base:message_loop_tests", | 78 "//base:message_loop_tests", |
| 70 "//base/test:test_support", | 79 "//base/test:test_support", |
| 71 "//mojo/environment:chromium", | 80 "//mojo/environment:chromium", |
| 72 "//testing/gtest", | 81 "//testing/gtest", |
| 73 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", | 82 "//third_party/mojo/src/mojo/edk/test:run_all_unittests", |
| (...skipping 20 matching lines...) Expand all Loading... |
| 94 ] | 103 ] |
| 95 | 104 |
| 96 deps = [ | 105 deps = [ |
| 97 "//base", | 106 "//base", |
| 98 "//mojo/application/public/cpp", | 107 "//mojo/application/public/cpp", |
| 99 "//mojo/services/tracing:bindings", | 108 "//mojo/services/tracing:bindings", |
| 100 "//third_party/mojo/src/mojo/public/cpp/bindings", | 109 "//third_party/mojo/src/mojo/public/cpp/bindings", |
| 101 ] | 110 ] |
| 102 } | 111 } |
| 103 } | 112 } |
| OLD | NEW |