| 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 74 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 85 '<(libaddressinput_dir)/cpp/src/validating_storage.h', | 85 '<(libaddressinput_dir)/cpp/src/validating_storage.h', |
| 86 '<(libaddressinput_dir)/cpp/src/validating_util.cc', | 86 '<(libaddressinput_dir)/cpp/src/validating_util.cc', |
| 87 '<(libaddressinput_dir)/cpp/src/validating_util.h', | 87 '<(libaddressinput_dir)/cpp/src/validating_util.h', |
| 88 ], | 88 ], |
| 89 'defines': [ | 89 'defines': [ |
| 90 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', | 90 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', |
| 91 ], | 91 ], |
| 92 'dependencies': [ | 92 'dependencies': [ |
| 93 'generated_messages', | 93 'generated_messages', |
| 94 '<(DEPTH)/base/base.gyp:base', | 94 '<(DEPTH)/base/base.gyp:base', |
| 95 '<(DEPTH)/third_party/re2/re2.gyp:re2', |
| 95 ], | 96 ], |
| 96 'direct_dependent_settings': { | 97 'direct_dependent_settings': { |
| 97 'include_dirs': [ | 98 'include_dirs': [ |
| 98 '<(libaddressinput_dir)/cpp/include/', | 99 '<(libaddressinput_dir)/cpp/include/', |
| 99 ], | 100 ], |
| 100 }, | 101 }, |
| 101 }, | 102 }, |
| 102 { | 103 { |
| 103 'target_name': 'libaddressinput_unittests', | 104 'target_name': 'libaddressinput_unittests', |
| 104 'type': '<(gtest_target_type)', | 105 'type': '<(gtest_target_type)', |
| (...skipping 28 matching lines...) Expand all Loading... |
| 133 'TEST_DATA_DIR="third_party/libaddressinput/src/testdata"', | 134 'TEST_DATA_DIR="third_party/libaddressinput/src/testdata"', |
| 134 ], | 135 ], |
| 135 'dependencies': [ | 136 'dependencies': [ |
| 136 'libaddressinput', | 137 'libaddressinput', |
| 137 '<(DEPTH)/base/base.gyp:run_all_unittests', | 138 '<(DEPTH)/base/base.gyp:run_all_unittests', |
| 138 '<(DEPTH)/testing/gtest.gyp:gtest', | 139 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 139 ], | 140 ], |
| 140 }, | 141 }, |
| 141 ], | 142 ], |
| 142 } | 143 } |
| OLD | NEW |