| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 { | 4 { |
| 5 'variables': { | 5 'variables': { |
| 6 # TODO(rouslan): Use the src/ directory. http://crbug.com/327046 | 6 # TODO(rouslan): Use the src/ directory. http://crbug.com/327046 |
| 7 'libaddressinput_dir': 'chromium', | 7 'libaddressinput_dir': 'chromium', |
| 8 }, | 8 }, |
| 9 'target_defaults': { | 9 'target_defaults': { |
| 10 'conditions': [ | 10 'conditions': [ |
| (...skipping 77 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 88 '<(libaddressinput_dir)/cpp/src/validating_storage.h', | 88 '<(libaddressinput_dir)/cpp/src/validating_storage.h', |
| 89 '<(libaddressinput_dir)/cpp/src/validating_util.cc', | 89 '<(libaddressinput_dir)/cpp/src/validating_util.cc', |
| 90 '<(libaddressinput_dir)/cpp/src/validating_util.h', | 90 '<(libaddressinput_dir)/cpp/src/validating_util.h', |
| 91 ], | 91 ], |
| 92 'defines': [ | 92 'defines': [ |
| 93 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', | 93 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', |
| 94 ], | 94 ], |
| 95 'dependencies': [ | 95 'dependencies': [ |
| 96 'generated_messages', | 96 'generated_messages', |
| 97 '<(DEPTH)/base/base.gyp:base', | 97 '<(DEPTH)/base/base.gyp:base', |
| 98 '<(DEPTH)/third_party/re2/re2.gyp:re2', |
| 98 ], | 99 ], |
| 99 'direct_dependent_settings': { | 100 'direct_dependent_settings': { |
| 100 'include_dirs': [ | 101 'include_dirs': [ |
| 101 '<(libaddressinput_dir)/cpp/include/', | 102 '<(libaddressinput_dir)/cpp/include/', |
| 102 ], | 103 ], |
| 103 }, | 104 }, |
| 104 }, | 105 }, |
| 105 { | 106 { |
| 106 'target_name': 'libaddressinput_unittests', | 107 'target_name': 'libaddressinput_unittests', |
| 107 'type': '<(gtest_target_type)', | 108 'type': '<(gtest_target_type)', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 136 'TEST_DATA_DIR="third_party/libaddressinput/src/testdata"', | 137 'TEST_DATA_DIR="third_party/libaddressinput/src/testdata"', |
| 137 ], | 138 ], |
| 138 'dependencies': [ | 139 'dependencies': [ |
| 139 'libaddressinput', | 140 'libaddressinput', |
| 140 '<(DEPTH)/base/base.gyp:run_all_unittests', | 141 '<(DEPTH)/base/base.gyp:run_all_unittests', |
| 141 '<(DEPTH)/testing/gtest.gyp:gtest', | 142 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 142 ], | 143 ], |
| 143 }, | 144 }, |
| 144 ], | 145 ], |
| 145 } | 146 } |
| OLD | NEW |