| 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 "process_id.mojom", |
| 19 "string16.mojom", | 20 "string16.mojom", |
| 20 "text_direction.mojom", | 21 "text_direction.mojom", |
| 21 "time.mojom", | 22 "time.mojom", |
| 22 "unguessable_token.mojom", | 23 "unguessable_token.mojom", |
| 23 "values.mojom", | 24 "values.mojom", |
| 24 "version.mojom", | 25 "version.mojom", |
| 25 ] | 26 ] |
| 26 } | 27 } |
| 27 | 28 |
| 28 component("common_base") { | 29 component("common_base") { |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 84 ] | 85 ] |
| 85 deps = [ | 86 deps = [ |
| 86 ":common_custom_types_shared_cpp_sources", | 87 ":common_custom_types_shared_cpp_sources", |
| 87 "//base:base", | 88 "//base:base", |
| 88 "//mojo/public/cpp/system", | 89 "//mojo/public/cpp/system", |
| 89 ] | 90 ] |
| 90 public_deps = [ | 91 public_deps = [ |
| 91 "//base:i18n", | 92 "//base:i18n", |
| 92 ] | 93 ] |
| 93 } | 94 } |
| OLD | NEW |