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 13 matching lines...) Expand all Loading... |
24 ], | 24 ], |
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_data.cc', |
34 'src/address_field.cc', | 35 'src/address_field.cc', |
35 'src/address_problem.cc', | 36 'src/address_problem.cc', |
36 'src/address_ui.cc', | 37 'src/address_ui.cc', |
37 'src/address_validator.cc', | 38 'src/address_validator.cc', |
38 'src/country_rules_aggregator.cc', | 39 'src/country_rules_aggregator.cc', |
39 'src/localization.cc', | 40 'src/localization.cc', |
40 'src/lookup_key_util.cc', | 41 'src/lookup_key_util.cc', |
41 'src/region_data_constants.cc', | 42 'src/region_data_constants.cc', |
42 'src/retriever.cc', | 43 'src/retriever.cc', |
43 'src/rule.cc', | 44 'src/rule.cc', |
(...skipping 61 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
105 '@executable_path/libaddressinput.dylib', | 106 '@executable_path/libaddressinput.dylib', |
106 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' | 107 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' |
107 ], | 108 ], |
108 }, | 109 }, |
109 ], | 110 ], |
110 }], | 111 }], |
111 ], | 112 ], |
112 }, | 113 }, |
113 ], | 114 ], |
114 } | 115 } |
OLD | NEW |