| 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 21 matching lines...) Expand all Loading... |
| 32 "data_pipe_file_utils.cc", | 32 "data_pipe_file_utils.cc", |
| 33 "data_pipe_utils.cc", | 33 "data_pipe_utils.cc", |
| 34 "data_pipe_utils.h", | 34 "data_pipe_utils.h", |
| 35 "user_agent.cc", | 35 "user_agent.cc", |
| 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", |
| 43 "//mojo/public/cpp/bindings", |
| 42 "//mojo/public/cpp/system", | 44 "//mojo/public/cpp/system", |
| 43 ] | 45 ] |
| 44 | 46 |
| 45 deps = [ | 47 deps = [ |
| 46 "//base", | |
| 47 "//base/third_party/dynamic_annotations", | 48 "//base/third_party/dynamic_annotations", |
| 48 "//mojo/public/c/system:for_component", | |
| 49 "//mojo/public/cpp/bindings", | |
| 50 ] | 49 ] |
| 51 } | 50 } |
| 52 | 51 |
| 53 # GYP version: mojo/mojo_base.gyp:mojo_url_type_converters | 52 # GYP version: mojo/mojo_base.gyp:mojo_url_type_converters |
| 54 source_set("url_type_converters") { | 53 source_set("url_type_converters") { |
| 55 sources = [ | 54 sources = [ |
| 56 "url_type_converters.cc", | 55 "url_type_converters.cc", |
| 57 "url_type_converters.h", | 56 "url_type_converters.h", |
| 58 ] | 57 ] |
| 59 | 58 |
| 59 public_deps = [ |
| 60 "//mojo/public/cpp/bindings", |
| 61 ] |
| 62 |
| 60 deps = [ | 63 deps = [ |
| 61 ":common_base", | |
| 62 "//base", | 64 "//base", |
| 63 "//base/third_party/dynamic_annotations", | 65 "//base/third_party/dynamic_annotations", |
| 64 "//mojo/public/cpp/bindings", | |
| 65 "//url", | 66 "//url", |
| 66 ] | 67 ] |
| 67 } | 68 } |
| 68 | 69 |
| 69 # GYP version: mojo/mojo_base.gyp:mojo_test_common_custom_types | 70 # GYP version: mojo/mojo_base.gyp:mojo_test_common_custom_types |
| 70 mojom("test_common_custom_types") { | 71 mojom("test_common_custom_types") { |
| 71 sources = [ | 72 sources = [ |
| 72 "test_common_custom_types.mojom", | 73 "test_common_custom_types.mojom", |
| 73 ] | 74 ] |
| 74 public_deps = [ | 75 public_deps = [ |
| (...skipping 26 matching lines...) Expand all Loading... |
| 101 | 102 |
| 102 test("mojo_common_perftests") { | 103 test("mojo_common_perftests") { |
| 103 deps = [ | 104 deps = [ |
| 104 ":common", | 105 ":common", |
| 105 "//base", | 106 "//base", |
| 106 "//mojo/edk/test:run_all_perftests", | 107 "//mojo/edk/test:run_all_perftests", |
| 107 "//mojo/public/cpp/test_support:test_utils", | 108 "//mojo/public/cpp/test_support:test_utils", |
| 108 "//testing/gtest", | 109 "//testing/gtest", |
| 109 ] | 110 ] |
| 110 } | 111 } |
| OLD | NEW |