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 85 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
96 ], | 96 ], |
97 'defines': [ | 97 'defines': [ |
98 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-aggregate-address
/"', | 98 'VALIDATION_DATA_URL="https://i18napis.appspot.com/ssl-aggregate-address
/"', |
99 ], | 99 ], |
100 'dependencies': [ | 100 'dependencies': [ |
101 'libaddressinput_strings', | 101 'libaddressinput_strings', |
102 '<(DEPTH)/third_party/re2/re2.gyp:re2', | 102 '<(DEPTH)/third_party/re2/re2.gyp:re2', |
103 '<(DEPTH)/base/base.gyp:base', | 103 '<(DEPTH)/base/base.gyp:base', |
104 ], | 104 ], |
105 'direct_dependent_settings': { | 105 'direct_dependent_settings': { |
| 106 'defines': [ |
| 107 'CUSTOM_BASICTYPES="base/basictypes.h"', |
| 108 'CUSTOM_SCOPED_PTR="base/memory/scoped_ptr.h"', |
| 109 ], |
106 'include_dirs': [ | 110 'include_dirs': [ |
107 '<(libaddressinput_dir)/cpp/include/', | 111 '<(libaddressinput_dir)/cpp/include/', |
108 ], | 112 ], |
109 }, | 113 }, |
110 }, | 114 }, |
111 { | 115 { |
112 'target_name': 'libaddressinput_unittests', | 116 'target_name': 'libaddressinput_unittests', |
113 'type': '<(gtest_target_type)', | 117 'type': '<(gtest_target_type)', |
114 'include_dirs': [ | 118 'include_dirs': [ |
115 '<(DEPTH)', | 119 '<(DEPTH)', |
(...skipping 33 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
149 'libaddressinput', | 153 'libaddressinput', |
150 'libaddressinput_strings', | 154 'libaddressinput_strings', |
151 '<(DEPTH)/base/base.gyp:base_prefs', | 155 '<(DEPTH)/base/base.gyp:base_prefs', |
152 '<(DEPTH)/base/base.gyp:run_all_unittests', | 156 '<(DEPTH)/base/base.gyp:run_all_unittests', |
153 '<(DEPTH)/net/net.gyp:net_test_support', | 157 '<(DEPTH)/net/net.gyp:net_test_support', |
154 '<(DEPTH)/testing/gtest.gyp:gtest', | 158 '<(DEPTH)/testing/gtest.gyp:gtest', |
155 ], | 159 ], |
156 }, | 160 }, |
157 ], | 161 ], |
158 } | 162 } |
OLD | NEW |