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

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

Issue 109323011: [rac] Download all rules for a country code in libaddressinput. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Address data 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 17 matching lines...) Expand all
28 }, 28 },
29 'targets': [ 29 'targets': [
30 { 30 {
31 'target_name': 'libaddressinput', 31 'target_name': 'libaddressinput',
32 'type': '<(component)', 32 'type': '<(component)',
33 'sources': [ 33 'sources': [
34 'src/address_field.cc', 34 'src/address_field.cc',
35 'src/address_problem.cc', 35 'src/address_problem.cc',
36 'src/address_ui.cc', 36 'src/address_ui.cc',
37 'src/address_validator.cc', 37 'src/address_validator.cc',
38 'src/country_rules_aggregator.cc',
38 'src/localization.cc', 39 'src/localization.cc',
39 'src/lookup_key_util.cc', 40 'src/lookup_key_util.cc',
40 'src/region_data_constants.cc', 41 'src/region_data_constants.cc',
41 'src/retriever.cc', 42 'src/retriever.cc',
42 'src/rule.cc', 43 'src/rule.cc',
44 'src/ruleset.cc',
43 'src/util/json.cc', 45 'src/util/json.cc',
44 'src/util/md5.cc', 46 'src/util/md5.cc',
45 'src/util/string_split.cc', 47 'src/util/string_split.cc',
46 'src/validating_util.cc', 48 'src/validating_util.cc',
47 ], 49 ],
48 'defines': [ 50 'defines': [
49 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', 51 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"',
50 ], 52 ],
51 'dependencies': [ 53 'dependencies': [
52 'grit.gyp:generated_messages', 54 'grit.gyp:generated_messages',
(...skipping 50 matching lines...) Expand 10 before | Expand all | Expand 10 after
103 '@executable_path/libaddressinput.dylib', 105 '@executable_path/libaddressinput.dylib',
104 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' 106 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}'
105 ], 107 ],
106 }, 108 },
107 ], 109 ],
108 }], 110 }],
109 ], 111 ],
110 }, 112 },
111 ], 113 ],
112 } 114 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698