| 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", |
| 11 ":common_custom_types", | 11 ":common_custom_types", |
| 12 ] | 12 ] |
| 13 } | 13 } |
| 14 | 14 |
| 15 mojom("common_custom_types") { | 15 mojom("common_custom_types") { |
| 16 sources = [ | 16 sources = [ |
| 17 "file.mojom", | 17 "file.mojom", |
| 18 "file_path.mojom", | 18 "file_path.mojom", |
| 19 "string16.mojom", | 19 "string16.mojom", |
| 20 "text_direction.mojom", |
| 20 "time.mojom", | 21 "time.mojom", |
| 21 "unguessable_token.mojom", | 22 "unguessable_token.mojom", |
| 22 "values.mojom", | 23 "values.mojom", |
| 23 "version.mojom", | 24 "version.mojom", |
| 24 ] | 25 ] |
| 25 } | 26 } |
| 26 | 27 |
| 27 component("common_base") { | 28 component("common_base") { |
| 28 output_name = "mojo_common_lib" | 29 output_name = "mojo_common_lib" |
| 29 | 30 |
| (...skipping 59 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 89 source_set("struct_traits") { | 90 source_set("struct_traits") { |
| 90 sources = [ | 91 sources = [ |
| 91 "common_custom_types_struct_traits.cc", | 92 "common_custom_types_struct_traits.cc", |
| 92 "common_custom_types_struct_traits.h", | 93 "common_custom_types_struct_traits.h", |
| 93 ] | 94 ] |
| 94 deps = [ | 95 deps = [ |
| 95 ":common_custom_types_shared_cpp_sources", | 96 ":common_custom_types_shared_cpp_sources", |
| 96 "//base:base", | 97 "//base:base", |
| 97 "//mojo/public/cpp/system", | 98 "//mojo/public/cpp/system", |
| 98 ] | 99 ] |
| 100 public_deps = [ |
| 101 "//base:i18n", |
| 102 ] |
| 99 } | 103 } |
| OLD | NEW |