| 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("//mojo/public/tools/bindings/mojom.gni") | 5 import("//mojo/public/tools/bindings/mojom.gni") |
| 6 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 group("common") { | 8 group("common") { |
| 9 public_deps = [ | 9 public_deps = [ |
| 10 ":common_base", | 10 ":common_base", |
| (...skipping 25 matching lines...) Expand all Loading... |
| 36 "user_agent.h", | 36 "user_agent.h", |
| 37 ] | 37 ] |
| 38 | 38 |
| 39 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] | 39 defines = [ "MOJO_COMMON_IMPLEMENTATION" ] |
| 40 | 40 |
| 41 public_deps = [ | 41 public_deps = [ |
| 42 "//base", | 42 "//base", |
| 43 "//mojo/public/cpp/bindings", | 43 "//mojo/public/cpp/bindings", |
| 44 "//mojo/public/cpp/system", | 44 "//mojo/public/cpp/system", |
| 45 ] | 45 ] |
| 46 | |
| 47 deps = [ | |
| 48 "//base/third_party/dynamic_annotations", | |
| 49 ] | |
| 50 } | 46 } |
| 51 | 47 |
| 52 # GYP version: mojo/mojo_base.gyp:mojo_url_type_converters | 48 # GYP version: mojo/mojo_base.gyp:mojo_url_type_converters |
| 53 source_set("url_type_converters") { | 49 source_set("url_type_converters") { |
| 54 sources = [ | 50 sources = [ |
| 55 "url_type_converters.cc", | 51 "url_type_converters.cc", |
| 56 "url_type_converters.h", | 52 "url_type_converters.h", |
| 57 ] | 53 ] |
| 58 | 54 |
| 59 public_deps = [ | 55 public_deps = [ |
| 60 "//mojo/public/cpp/bindings", | 56 "//mojo/public/cpp/bindings", |
| 61 ] | 57 ] |
| 62 | 58 |
| 63 deps = [ | 59 deps = [ |
| 64 "//base", | 60 "//base", |
| 65 "//base/third_party/dynamic_annotations", | |
| 66 "//url", | 61 "//url", |
| 67 ] | 62 ] |
| 68 } | 63 } |
| 69 | 64 |
| 70 # GYP version: mojo/mojo_base.gyp:mojo_test_common_custom_types | 65 # GYP version: mojo/mojo_base.gyp:mojo_test_common_custom_types |
| 71 mojom("test_common_custom_types") { | 66 mojom("test_common_custom_types") { |
| 72 sources = [ | 67 sources = [ |
| 73 "test_common_custom_types.mojom", | 68 "test_common_custom_types.mojom", |
| 74 ] | 69 ] |
| 75 public_deps = [ | 70 public_deps = [ |
| (...skipping 26 matching lines...) Expand all Loading... |
| 102 | 97 |
| 103 test("mojo_common_perftests") { | 98 test("mojo_common_perftests") { |
| 104 deps = [ | 99 deps = [ |
| 105 ":common", | 100 ":common", |
| 106 "//base", | 101 "//base", |
| 107 "//mojo/edk/test:run_all_perftests", | 102 "//mojo/edk/test:run_all_perftests", |
| 108 "//mojo/public/cpp/test_support:test_utils", | 103 "//mojo/public/cpp/test_support:test_utils", |
| 109 "//testing/gtest", | 104 "//testing/gtest", |
| 110 ] | 105 ] |
| 111 } | 106 } |
| OLD | NEW |