| 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 14 matching lines...) Expand all Loading... |
| 25 'include_dirs': [ | 25 'include_dirs': [ |
| 26 'include', | 26 'include', |
| 27 ], | 27 ], |
| 28 }, | 28 }, |
| 29 'targets': [ | 29 'targets': [ |
| 30 { | 30 { |
| 31 'target_name': 'libaddressinput', | 31 'target_name': 'libaddressinput', |
| 32 'type': '<(component)', | 32 'type': '<(component)', |
| 33 'sources': [ | 33 'sources': [ |
| 34 'src/address_field.cc', | 34 'src/address_field.cc', |
| 35 'src/address_field_util.cc', | |
| 36 'src/address_problem.cc', | 35 'src/address_problem.cc', |
| 37 'src/address_ui.cc', | 36 'src/address_ui.cc', |
| 38 'src/address_validator.cc', | 37 'src/address_validator.cc', |
| 39 'src/localization.cc', | 38 'src/localization.cc', |
| 40 'src/lookup_key_util.cc', | 39 'src/lookup_key_util.cc', |
| 41 'src/region_data_constants.cc', | 40 'src/region_data_constants.cc', |
| 42 'src/retriever.cc', | 41 'src/retriever.cc', |
| 43 'src/rule.cc', | 42 'src/rule.cc', |
| 44 'src/rule_retriever.cc', | 43 'src/rule_retriever.cc', |
| 45 'src/util/json.cc', | 44 'src/util/json.cc', |
| 46 'src/util/md5.cc', | 45 'src/util/md5.cc', |
| 47 'src/util/string_split.cc', | 46 'src/util/string_split.cc', |
| 48 'src/validating_storage.cc', | 47 'src/validating_storage.cc', |
| 49 'src/validating_util.cc', | 48 'src/validating_util.cc', |
| 50 ], | 49 ], |
| 51 'defines': [ | 50 'defines': [ |
| 52 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', | 51 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', |
| 53 ], | 52 ], |
| 54 'dependencies': [ | 53 'dependencies': [ |
| 55 'grit.gyp:generated_messages', | 54 'grit.gyp:generated_messages', |
| 56 'rapidjson.gyp:rapidjson', | 55 'rapidjson.gyp:rapidjson', |
| 57 ], | 56 ], |
| 58 }, | 57 }, |
| 59 { | 58 { |
| 60 'target_name': 'unit_tests', | 59 'target_name': 'unit_tests', |
| 61 'type': 'executable', | 60 'type': 'executable', |
| 62 'sources': [ | 61 'sources': [ |
| 63 'test/address_field_util_test.cc', | |
| 64 'test/address_ui_test.cc', | 62 'test/address_ui_test.cc', |
| 65 'test/fake_downloader.cc', | 63 'test/fake_downloader.cc', |
| 66 'test/fake_downloader_test.cc', | 64 'test/fake_downloader_test.cc', |
| 67 'test/fake_storage.cc', | 65 'test/fake_storage.cc', |
| 68 'test/fake_storage_test.cc', | 66 'test/fake_storage_test.cc', |
| 69 'test/localization_test.cc', | 67 'test/localization_test.cc', |
| 70 'test/lookup_key_util_test.cc', | 68 'test/lookup_key_util_test.cc', |
| 71 'test/region_data_constants_test.cc', | 69 'test/region_data_constants_test.cc', |
| 72 'test/retriever_test.cc', | 70 'test/retriever_test.cc', |
| 73 'test/rule_retriever_test.cc', | 71 'test/rule_retriever_test.cc', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 106 '@executable_path/libaddressinput.dylib', | 104 '@executable_path/libaddressinput.dylib', |
| 107 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' | 105 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' |
| 108 ], | 106 ], |
| 109 }, | 107 }, |
| 110 ], | 108 ], |
| 111 }], | 109 }], |
| 112 ], | 110 ], |
| 113 }, | 111 }, |
| 114 ], | 112 ], |
| 115 } | 113 } |
| OLD | NEW |