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