OLD | NEW |
1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 if (is_win) { | 5 if (is_win) { |
6 config_h_dir = "vsprojects" | 6 config_h_dir = "vsprojects" |
7 } else { | 7 } else { |
8 config_h_dir = "." | 8 config_h_dir = "." |
9 } | 9 } |
10 | 10 |
(...skipping 238 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
249 if (is_win) { | 249 if (is_win) { |
250 # This is defined internally, don't warn on duplicate. | 250 # This is defined internally, don't warn on duplicate. |
251 configs -= [ "//build/config/win:lean_and_mean" ] | 251 configs -= [ "//build/config/win:lean_and_mean" ] |
252 } | 252 } |
253 | 253 |
254 cflags = protobuf_lite_cflags | 254 cflags = protobuf_lite_cflags |
255 | 255 |
256 deps = [ | 256 deps = [ |
257 ":protobuf_full", | 257 ":protobuf_full", |
258 ] | 258 ] |
| 259 deps += [ "//build/config/sanitizers:deps" ] |
259 } | 260 } |
260 } | 261 } |
OLD | NEW |