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

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

Issue 208243005: Determine language code and type of format for address. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Move function to util.h. Created 6 years, 9 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 26 matching lines...) Expand all
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/fallback_data_store.cc',
41 'src/region_data_constants.cc', 41 'src/region_data_constants.cc',
42 'src/retriever.cc', 42 'src/retriever.cc',
43 'src/rule.cc', 43 'src/rule.cc',
44 'src/ruleset.cc', 44 'src/ruleset.cc',
45 'src/time_to_string.cc', 45 'src/time_to_string.cc',
46 'src/util/canonicalize_string.cc', 46 'src/util/canonicalize_string.cc',
47 'src/util.cc',
47 'src/util/json.cc', 48 'src/util/json.cc',
48 'src/util/md5.cc', 49 'src/util/md5.cc',
49 'src/util/string_compare.cc', 50 'src/util/string_compare.cc',
50 'src/util/string_split.cc', 51 'src/util/string_split.cc',
51 'src/util/trie.cc', 52 'src/util/trie.cc',
52 ], 53 ],
53 'defines': [ 54 'defines': [
54 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-aggregate-address /"', 55 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-aggregate-address /"',
55 ], 56 ],
56 'dependencies': [ 57 'dependencies': [
(...skipping 54 matching lines...) Expand 10 before | Expand all | Expand 10 after
111 '@executable_path/libaddressinput.dylib', 112 '@executable_path/libaddressinput.dylib',
112 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' 113 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}'
113 ], 114 ],
114 }, 115 },
115 ], 116 ],
116 }], 117 }],
117 ], 118 ],
118 }, 119 },
119 ], 120 ],
120 } 121 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698