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("//third_party/protobuf/proto_library.gni") | 5 import("//third_party/protobuf/proto_library.gni") |
6 | 6 |
7 proto_library("proto") { | 7 proto_library("proto") { |
8 sources = [ | 8 sources = [ |
9 "src/resources/phonemetadata.proto", | 9 "src/resources/phonemetadata.proto", |
10 "src/resources/phonenumber.proto", | 10 "src/resources/phonenumber.proto", |
(...skipping 26 matching lines...) Expand all Loading... |
37 "src/phonenumbers/regexp_adapter_icu.cc", | 37 "src/phonenumbers/regexp_adapter_icu.cc", |
38 "src/phonenumbers/regexp_cache.cc", | 38 "src/phonenumbers/regexp_cache.cc", |
39 "src/phonenumbers/string_byte_sink.cc", | 39 "src/phonenumbers/string_byte_sink.cc", |
40 "src/phonenumbers/stringutil.cc", | 40 "src/phonenumbers/stringutil.cc", |
41 "src/phonenumbers/unicodestring.cc", | 41 "src/phonenumbers/unicodestring.cc", |
42 "src/phonenumbers/utf/rune.c", | 42 "src/phonenumbers/utf/rune.c", |
43 "src/phonenumbers/utf/unicodetext.cc", | 43 "src/phonenumbers/utf/unicodetext.cc", |
44 "src/phonenumbers/utf/unilib.cc", | 44 "src/phonenumbers/utf/unilib.cc", |
45 ] | 45 ] |
46 | 46 |
| 47 # TODO(scottmg): Temporary until https://codereview.appspot.com/134650043/ |
| 48 # lands and rolls. http://crbug.com/335824 |
| 49 configs -= [ "//build/config/compiler:chromium_code" ] |
| 50 configs += [ "//build/config/compiler:no_chromium_code" ] |
| 51 |
47 direct_dependent_configs = [ ":libphonenumber_config" ] | 52 direct_dependent_configs = [ ":libphonenumber_config" ] |
48 | 53 |
49 deps = [ | 54 deps = [ |
50 ":proto", | 55 ":proto", |
51 "//third_party/icu", | 56 "//third_party/icu", |
52 "//third_party/protobuf:protobuf_lite", | 57 "//third_party/protobuf:protobuf_lite", |
53 ] | 58 ] |
54 | 59 |
55 forward_dependent_configs_from = [ ":proto" ] | 60 forward_dependent_configs_from = [ ":proto" ] |
56 } | 61 } |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
90 deps = [ | 95 deps = [ |
91 ":libphonenumber_without_metadata", | 96 ":libphonenumber_without_metadata", |
92 "//base", | 97 "//base", |
93 "//base/test:run_all_unittests", | 98 "//base/test:run_all_unittests", |
94 "//base/third_party/dynamic_annotations", | 99 "//base/third_party/dynamic_annotations", |
95 "//third_party/icu", | 100 "//third_party/icu", |
96 "//testing/gmock", | 101 "//testing/gmock", |
97 "//testing/gtest", | 102 "//testing/gtest", |
98 ] | 103 ] |
99 } | 104 } |
OLD | NEW |