| OLD | NEW |
| 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 Loading... |
| 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', |
| 45 'src/util/json.cc', | 46 'src/util/json.cc', |
| 46 'src/util/md5.cc', | 47 'src/util/md5.cc', |
| 47 'src/util/string_split.cc', | 48 'src/util/string_split.cc', |
| 48 'src/validating_util.cc', | 49 'src/wrapper.cc', |
| 49 ], | 50 ], |
| 50 'defines': [ | 51 'defines': [ |
| 51 # TODO(rouslan): Use https://i18napis.appspot.com. | 52 # TODO(rouslan): Use https://i18napis.appspot.com. |
| 52 'VALIDATION_DATA_URL="https://i18napis-canary-hrd.appspot.com/ssl-aggreg
ate-address/"', | 53 'VALIDATION_DATA_URL="https://i18napis-canary-hrd.appspot.com/ssl-aggreg
ate-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 ], |
| (...skipping 12 matching lines...) Expand all Loading... |
| 71 'test/fallback_data_store_test.cc', | 72 'test/fallback_data_store_test.cc', |
| 72 'test/region_data_constants_test.cc', | 73 'test/region_data_constants_test.cc', |
| 73 'test/retriever_test.cc', | 74 'test/retriever_test.cc', |
| 74 'test/rule_test.cc', | 75 'test/rule_test.cc', |
| 75 'test/storage_test_runner.cc', | 76 'test/storage_test_runner.cc', |
| 76 'test/util/json_test.cc', | 77 'test/util/json_test.cc', |
| 77 'test/util/md5_unittest.cc', | 78 'test/util/md5_unittest.cc', |
| 78 'test/util/scoped_ptr_unittest.cc', | 79 'test/util/scoped_ptr_unittest.cc', |
| 79 'test/util/stl_util_unittest.cc', | 80 'test/util/stl_util_unittest.cc', |
| 80 'test/util/string_split_unittest.cc', | 81 'test/util/string_split_unittest.cc', |
| 81 'test/validating_util_test.cc', | 82 'test/wrapper_test.cc', |
| 82 ], | 83 ], |
| 83 'defines': [ | 84 'defines': [ |
| 84 'TEST_DATA_DIR="../testdata"', | 85 'TEST_DATA_DIR="../testdata"', |
| 85 ], | 86 ], |
| 86 'include_dirs': [ | 87 'include_dirs': [ |
| 87 'src', | 88 'src', |
| 88 ], | 89 ], |
| 89 'dependencies': [ | 90 'dependencies': [ |
| 90 'libaddressinput', | 91 'libaddressinput', |
| 91 'gtest.gyp:main', | 92 'gtest.gyp:main', |
| (...skipping 15 matching lines...) Expand all Loading... |
| 107 '@executable_path/libaddressinput.dylib', | 108 '@executable_path/libaddressinput.dylib', |
| 108 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' | 109 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' |
| 109 ], | 110 ], |
| 110 }, | 111 }, |
| 111 ], | 112 ], |
| 112 }], | 113 }], |
| 113 ], | 114 ], |
| 114 }, | 115 }, |
| 115 ], | 116 ], |
| 116 } | 117 } |
| OLD | NEW |