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

Side by Side Diff: third_party/libaddressinput/chromium/cpp/libaddressinput.gyp

Issue 137563004: libaddressinput: Add fallback data for US address validation. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix fmt Created 6 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 | Annotate | Revision Log
OLDNEW
1 # Copyright (C) 2013 Google Inc. 1 # Copyright (C) 2013 Google Inc.
2 # 2 #
3 # Licensed under the Apache License, Version 2.0 (the "License"); 3 # Licensed under the Apache License, Version 2.0 (the "License");
4 # you may not use this file except in compliance with the License. 4 # you may not use this file except in compliance with the License.
5 # You may obtain a copy of the License at 5 # You may obtain a copy of the License at
6 # 6 #
7 # http://www.apache.org/licenses/LICENSE-2.0 7 # http://www.apache.org/licenses/LICENSE-2.0
8 # 8 #
9 # Unless required by applicable law or agreed to in writing, software 9 # Unless required by applicable law or agreed to in writing, software
10 # distributed under the License is distributed on an "AS IS" BASIS, 10 # distributed under the License is distributed on an "AS IS" BASIS,
(...skipping 19 matching lines...) Expand all
30 { 30 {
31 'target_name': 'libaddressinput', 31 'target_name': 'libaddressinput',
32 'type': '<(component)', 32 'type': '<(component)',
33 'sources': [ 33 'sources': [
34 'src/address_data.cc', 34 'src/address_data.cc',
35 'src/address_field.cc', 35 'src/address_field.cc',
36 'src/address_problem.cc', 36 'src/address_problem.cc',
37 'src/address_ui.cc', 37 'src/address_ui.cc',
38 'src/address_validator.cc', 38 'src/address_validator.cc',
39 'src/country_rules_aggregator.cc', 39 'src/country_rules_aggregator.cc',
40 'src/fallback_data_store.cc',
40 'src/localization.cc', 41 'src/localization.cc',
41 'src/lookup_key_util.cc', 42 'src/lookup_key_util.cc',
42 'src/region_data_constants.cc', 43 'src/region_data_constants.cc',
43 'src/retriever.cc', 44 'src/retriever.cc',
44 'src/rule.cc', 45 'src/rule.cc',
45 'src/ruleset.cc', 46 'src/ruleset.cc',
46 'src/util/json.cc', 47 'src/util/json.cc',
47 'src/util/md5.cc', 48 'src/util/md5.cc',
48 'src/util/string_split.cc', 49 'src/util/string_split.cc',
49 'src/validating_util.cc', 50 'src/validating_util.cc',
50 ], 51 ],
51 'defines': [ 52 'defines': [
52 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', 53 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"',
53 ], 54 ],
54 'dependencies': [ 55 'dependencies': [
55 'grit.gyp:generated_messages', 56 'grit.gyp:generated_messages',
56 'rapidjson.gyp:rapidjson', 57 'rapidjson.gyp:rapidjson',
57 're2.gyp:re2', 58 're2.gyp:re2',
58 ], 59 ],
59 }, 60 },
60 { 61 {
61 'target_name': 'unit_tests', 62 'target_name': 'unit_tests',
please use gerrit instead 2014/01/16 00:50:15 Please add 'test/fallback_data_store_test.cc' to t
Evan Stade 2014/01/16 01:09:10 Done.
62 'type': 'executable', 63 'type': 'executable',
63 'sources': [ 64 'sources': [
64 'test/address_ui_test.cc', 65 'test/address_ui_test.cc',
65 'test/fake_downloader.cc', 66 'test/fake_downloader.cc',
66 'test/fake_downloader_test.cc', 67 'test/fake_downloader_test.cc',
67 'test/fake_storage.cc', 68 'test/fake_storage.cc',
68 'test/fake_storage_test.cc', 69 'test/fake_storage_test.cc',
69 'test/localization_test.cc', 70 'test/localization_test.cc',
70 'test/lookup_key_util_test.cc', 71 'test/lookup_key_util_test.cc',
71 'test/region_data_constants_test.cc', 72 'test/region_data_constants_test.cc',
(...skipping 34 matching lines...) Expand 10 before | Expand all | Expand 10 after
106 '@executable_path/libaddressinput.dylib', 107 '@executable_path/libaddressinput.dylib',
107 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' 108 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}'
108 ], 109 ],
109 }, 110 },
110 ], 111 ],
111 }], 112 }],
112 ], 113 ],
113 }, 114 },
114 ], 115 ],
115 } 116 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698