| 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 80 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 91 '<(libaddressinput_dir)/cpp/src/util/string_split.h', | 91 '<(libaddressinput_dir)/cpp/src/util/string_split.h', |
| 92 '<(libaddressinput_dir)/cpp/src/validating_util.cc', | 92 '<(libaddressinput_dir)/cpp/src/validating_util.cc', |
| 93 '<(libaddressinput_dir)/cpp/src/validating_util.h', | 93 '<(libaddressinput_dir)/cpp/src/validating_util.h', |
| 94 ], | 94 ], |
| 95 'defines': [ | 95 'defines': [ |
| 96 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', | 96 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-address/"', |
| 97 ], | 97 ], |
| 98 'dependencies': [ | 98 'dependencies': [ |
| 99 'libaddressinput_strings', | 99 'libaddressinput_strings', |
| 100 '<(DEPTH)/base/base.gyp:base', | 100 '<(DEPTH)/base/base.gyp:base', |
| 101 '<(DEPTH)/third_party/re2/re2.gyp:re2', | 101 '<(DEPTH)/out/gn_gyp/third_party/re2/re2.gyp:re2', |
| 102 ], | 102 ], |
| 103 'direct_dependent_settings': { | 103 'direct_dependent_settings': { |
| 104 'include_dirs': [ | 104 'include_dirs': [ |
| 105 '<(libaddressinput_dir)/cpp/include/', | 105 '<(libaddressinput_dir)/cpp/include/', |
| 106 ], | 106 ], |
| 107 }, | 107 }, |
| 108 }, | 108 }, |
| 109 { | 109 { |
| 110 'target_name': 'libaddressinput_unittests', | 110 'target_name': 'libaddressinput_unittests', |
| 111 'type': '<(gtest_target_type)', | 111 'type': '<(gtest_target_type)', |
| (...skipping 32 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 'libaddressinput', | 144 'libaddressinput', |
| 145 'libaddressinput_strings', | 145 'libaddressinput_strings', |
| 146 '<(DEPTH)/base/base.gyp:base_prefs', | 146 '<(DEPTH)/base/base.gyp:base_prefs', |
| 147 '<(DEPTH)/base/base.gyp:run_all_unittests', | 147 '<(DEPTH)/base/base.gyp:run_all_unittests', |
| 148 '<(DEPTH)/net/net.gyp:net_test_support', | 148 '<(DEPTH)/net/net.gyp:net_test_support', |
| 149 '<(DEPTH)/testing/gtest.gyp:gtest', | 149 '<(DEPTH)/testing/gtest.gyp:gtest', |
| 150 ], | 150 ], |
| 151 }, | 151 }, |
| 152 ], | 152 ], |
| 153 } | 153 } |
| OLD | NEW |