Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(14)

Side by Side Diff: mojo/common/BUILD.gn

Issue 2626093004: EnumTraits for base::i18n::TextDirection. (Closed)
Patch Set: Addressed feedback. Created 3 years, 11 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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
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 }
OLDNEW
« no previous file with comments | « components/autofill/content/common/autofill_types_struct_traits.cc ('k') | mojo/common/common_custom_types_struct_traits.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698