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

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: Add ctime include. 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 24 matching lines...) Expand all
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/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',
46 'src/util/canonicalize_string.cc', 45 'src/util/canonicalize_string.cc',
47 'src/util/json.cc', 46 'src/util/json.cc',
48 'src/util/md5.cc', 47 'src/util/md5.cc',
49 'src/util/string_compare.cc', 48 'src/util/string_util.cc',
50 'src/util/string_split.cc',
51 'src/util/trie.cc', 49 'src/util/trie.cc',
52 ], 50 ],
53 'defines': [ 51 'defines': [
54 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-aggregate-address /"', 52 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-aggregate-address /"',
55 ], 53 ],
56 'dependencies': [ 54 'dependencies': [
57 'grit.gyp:generated_messages', 55 'grit.gyp:generated_messages',
58 'rapidjson.gyp:rapidjson', 56 'rapidjson.gyp:rapidjson',
59 're2.gyp:re2', 57 're2.gyp:re2',
60 ], 58 ],
61 }, 59 },
62 { 60 {
63 'target_name': 'unit_tests', 61 'target_name': 'unit_tests',
64 'type': 'executable', 62 'type': 'executable',
65 'sources': [ 63 'sources': [
66 'test/address_data_test.cc', 64 'test/address_data_test.cc',
67 'test/address_ui_test.cc', 65 'test/address_ui_test.cc',
68 'test/address_validator_test.cc', 66 'test/address_validator_test.cc',
69 'test/country_rules_aggregator_test.cc', 67 'test/country_rules_aggregator_test.cc',
70 'test/fake_downloader.cc', 68 'test/fake_downloader.cc',
71 'test/fake_downloader_test.cc', 69 'test/fake_downloader_test.cc',
72 'test/fake_storage.cc', 70 'test/fake_storage.cc',
73 'test/fake_storage_test.cc', 71 'test/fake_storage_test.cc',
74 'test/fallback_data_store_test.cc', 72 'test/fallback_data_store_test.cc',
75 'test/region_data_constants_test.cc', 73 'test/region_data_constants_test.cc',
76 'test/retriever_test.cc', 74 'test/retriever_test.cc',
77 'test/rule_test.cc', 75 'test/rule_test.cc',
78 'test/storage_test_runner.cc', 76 'test/storage_test_runner.cc',
79 'test/time_to_string.cc',
80 'test/util/json_test.cc', 77 'test/util/json_test.cc',
81 'test/util/md5_unittest.cc', 78 'test/util/md5_unittest.cc',
82 'test/util/scoped_ptr_unittest.cc', 79 'test/util/scoped_ptr_unittest.cc',
83 'test/util/stl_util_unittest.cc', 80 'test/util/stl_util_unittest.cc',
84 'test/util/string_split_unittest.cc', 81 'test/util/string_util_test.cc',
85 'test/util/trie_test.cc', 82 'test/util/trie_test.cc',
86 ], 83 ],
87 'defines': [ 84 'defines': [
88 'TEST_DATA_DIR="../testdata"', 85 'TEST_DATA_DIR="../testdata"',
89 ], 86 ],
90 'include_dirs': [ 87 'include_dirs': [
91 'src', 88 'src',
92 ], 89 ],
93 'dependencies': [ 90 'dependencies': [
94 'libaddressinput', 91 'libaddressinput',
(...skipping 16 matching lines...) Expand all
111 '@executable_path/libaddressinput.dylib', 108 '@executable_path/libaddressinput.dylib',
112 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' 109 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}'
113 ], 110 ],
114 }, 111 },
115 ], 112 ],
116 }], 113 }],
117 ], 114 ],
118 }, 115 },
119 ], 116 ],
120 } 117 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698