Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(19)

Side by Side Diff: third_party/libaddressinput/chromium/cpp/libaddressinput.gyp

Issue 98543010: rac] Add re2 dependency to libaddressinput. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Created 7 years ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 'src/util/string_split.cc', 49 'src/util/string_split.cc',
50 'src/validating_storage.cc', 50 'src/validating_storage.cc',
51 'src/validating_util.cc', 51 'src/validating_util.cc',
52 ], 52 ],
53 'defines': [ 53 'defines': [
54 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', 54 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"',
55 ], 55 ],
56 'dependencies': [ 56 'dependencies': [
57 'grit.gyp:generated_messages', 57 'grit.gyp:generated_messages',
58 'rapidjson.gyp:rapidjson', 58 'rapidjson.gyp:rapidjson',
59 're2.gyp:re2',
59 ], 60 ],
60 }, 61 },
61 { 62 {
62 'target_name': 'unit_tests', 63 'target_name': 'unit_tests',
63 'type': 'executable', 64 'type': 'executable',
64 'sources': [ 65 'sources': [
65 'test/address_field_util_test.cc', 66 'test/address_field_util_test.cc',
66 'test/address_ui_test.cc', 67 'test/address_ui_test.cc',
67 'test/fake_downloader.cc', 68 'test/fake_downloader.cc',
68 'test/fake_downloader_test.cc', 69 'test/fake_downloader_test.cc',
(...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after
108 '@executable_path/libaddressinput.dylib', 109 '@executable_path/libaddressinput.dylib',
109 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}' 110 '${BUILT_PRODUCTS_DIR}/${EXECUTABLE_PATH}'
110 ], 111 ],
111 }, 112 },
112 ], 113 ],
113 }], 114 }],
114 ], 115 ],
115 }, 116 },
116 ], 117 ],
117 } 118 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698