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