| 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 30 matching lines...) Expand all Loading... |
| 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/util/json.cc', | 45 'src/util/json.cc', |
| 46 'src/util/md5.cc', | 46 'src/util/md5.cc', |
| 47 'src/util/string_split.cc', | 47 'src/util/string_split.cc', |
| 48 'src/validating_util.cc', | 48 'src/validating_util.cc', |
| 49 ], | 49 ], |
| 50 'defines': [ | 50 'defines': [ |
| 51 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', | 51 # TODO(rouslan): Use https://i18napis.appspot.com. |
| 52 'VALIDATION_DATA_URL="https://i18napis-canary-hrd.appspot.com/ssl-aggreg
ate-address/"', |
| 52 ], | 53 ], |
| 53 'dependencies': [ | 54 'dependencies': [ |
| 54 'grit.gyp:generated_messages', | 55 'grit.gyp:generated_messages', |
| 55 'rapidjson.gyp:rapidjson', | 56 'rapidjson.gyp:rapidjson', |
| 56 're2.gyp:re2', | 57 're2.gyp:re2', |
| 57 ], | 58 ], |
| 58 }, | 59 }, |
| 59 { | 60 { |
| 60 'target_name': 'unit_tests', | 61 'target_name': 'unit_tests', |
| 61 'type': 'executable', | 62 'type': 'executable', |
| 62 'sources': [ | 63 'sources': [ |
| 63 'test/address_data_test.cc', | 64 'test/address_data_test.cc', |
| 64 'test/address_ui_test.cc', | 65 'test/address_ui_test.cc', |
| 66 'test/country_rules_aggregator_test.cc', |
| 65 'test/fake_downloader.cc', | 67 'test/fake_downloader.cc', |
| 66 'test/fake_downloader_test.cc', | 68 'test/fake_downloader_test.cc', |
| 67 'test/fake_storage.cc', | 69 'test/fake_storage.cc', |
| 68 'test/fake_storage_test.cc', | 70 'test/fake_storage_test.cc', |
| 69 'test/fallback_data_store_test.cc', | 71 'test/fallback_data_store_test.cc', |
| 70 'test/region_data_constants_test.cc', | 72 'test/region_data_constants_test.cc', |
| 71 'test/retriever_test.cc', | 73 'test/retriever_test.cc', |
| 72 'test/rule_test.cc', | 74 'test/rule_test.cc', |
| 73 'test/storage_test_runner.cc', | 75 'test/storage_test_runner.cc', |
| 74 'test/util/json_test.cc', | 76 'test/util/json_test.cc', |
| (...skipping 30 matching lines...) Expand all Loading... |
| 105 '@executable_path/libaddressinput.dylib', | 107 '@executable_path/libaddressinput.dylib', |
| 106 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' | 108 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' |
| 107 ], | 109 ], |
| 108 }, | 110 }, |
| 109 ], | 111 ], |
| 110 }], | 112 }], |
| 111 ], | 113 ], |
| 112 }, | 114 }, |
| 113 ], | 115 ], |
| 114 } | 116 } |
| OLD | NEW |