| 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 25 matching lines...) Expand all Loading... |
| 36 'src/address_ui.cc', | 36 'src/address_ui.cc', |
| 37 'src/address_validator.cc', | 37 'src/address_validator.cc', |
| 38 'src/localization.cc', | 38 'src/localization.cc', |
| 39 'src/lookup_key_util.cc', | 39 'src/lookup_key_util.cc', |
| 40 'src/region_data_constants.cc', | 40 'src/region_data_constants.cc', |
| 41 'src/retriever.cc', | 41 'src/retriever.cc', |
| 42 'src/rule.cc', | 42 'src/rule.cc', |
| 43 'src/util/json.cc', | 43 'src/util/json.cc', |
| 44 'src/util/md5.cc', | 44 'src/util/md5.cc', |
| 45 'src/util/string_split.cc', | 45 'src/util/string_split.cc', |
| 46 'src/validating_storage.cc', | |
| 47 'src/validating_util.cc', | 46 'src/validating_util.cc', |
| 48 ], | 47 ], |
| 49 'defines': [ | 48 'defines': [ |
| 50 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', | 49 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', |
| 51 ], | 50 ], |
| 52 'dependencies': [ | 51 'dependencies': [ |
| 53 'grit.gyp:generated_messages', | 52 'grit.gyp:generated_messages', |
| 54 'rapidjson.gyp:rapidjson', | 53 'rapidjson.gyp:rapidjson', |
| 55 're2.gyp:re2', | 54 're2.gyp:re2', |
| 56 ], | 55 ], |
| (...skipping 11 matching lines...) Expand all Loading... |
| 68 'test/lookup_key_util_test.cc', | 67 'test/lookup_key_util_test.cc', |
| 69 'test/region_data_constants_test.cc', | 68 'test/region_data_constants_test.cc', |
| 70 'test/retriever_test.cc', | 69 'test/retriever_test.cc', |
| 71 'test/rule_test.cc', | 70 'test/rule_test.cc', |
| 72 'test/storage_test_runner.cc', | 71 'test/storage_test_runner.cc', |
| 73 'test/util/json_test.cc', | 72 'test/util/json_test.cc', |
| 74 'test/util/md5_unittest.cc', | 73 'test/util/md5_unittest.cc', |
| 75 'test/util/scoped_ptr_unittest.cc', | 74 'test/util/scoped_ptr_unittest.cc', |
| 76 'test/util/stl_util_unittest.cc', | 75 'test/util/stl_util_unittest.cc', |
| 77 'test/util/string_split_unittest.cc', | 76 'test/util/string_split_unittest.cc', |
| 78 'test/validating_storage_test.cc', | |
| 79 'test/validating_util_test.cc', | 77 'test/validating_util_test.cc', |
| 80 ], | 78 ], |
| 81 'defines': [ | 79 'defines': [ |
| 82 'TEST_DATA_DIR="../testdata"', | 80 'TEST_DATA_DIR="../testdata"', |
| 83 ], | 81 ], |
| 84 'include_dirs': [ | 82 'include_dirs': [ |
| 85 'src', | 83 'src', |
| 86 ], | 84 ], |
| 87 'dependencies': [ | 85 'dependencies': [ |
| 88 'libaddressinput', | 86 'libaddressinput', |
| (...skipping 16 matching lines...) Expand all Loading... |
| 105 '@executable_path/libaddressinput.dylib', | 103 '@executable_path/libaddressinput.dylib', |
| 106 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' | 104 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' |
| 107 ], | 105 ], |
| 108 }, | 106 }, |
| 109 ], | 107 ], |
| 110 }], | 108 }], |
| 111 ], | 109 ], |
| 112 }, | 110 }, |
| 113 ], | 111 ], |
| 114 } | 112 } |
| OLD | NEW |