OLD | NEW |
1 # Copyright (c) 2013 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 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 import("//build/config/allocator.gni") | 5 import("//build/config/allocator.gni") |
6 import("//build/config/chrome_build.gni") | 6 import("//build/config/chrome_build.gni") |
7 import("//build/config/chromecast_build.gni") | 7 import("//build/config/chromecast_build.gni") |
8 import("//build/config/crypto.gni") | 8 import("//build/config/crypto.gni") |
9 import("//build/config/dcheck_always_on.gni") | 9 import("//build/config/dcheck_always_on.gni") |
10 import("//build/config/features.gni") | 10 import("//build/config/features.gni") |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
197 } | 197 } |
198 if (enable_supervised_users) { | 198 if (enable_supervised_users) { |
199 defines += [ "ENABLE_SUPERVISED_USERS=1" ] | 199 defines += [ "ENABLE_SUPERVISED_USERS=1" ] |
200 } | 200 } |
201 if (enable_service_discovery) { | 201 if (enable_service_discovery) { |
202 defines += [ "ENABLE_SERVICE_DISCOVERY=1" ] | 202 defines += [ "ENABLE_SERVICE_DISCOVERY=1" ] |
203 } | 203 } |
204 if (enable_image_loader_extension) { | 204 if (enable_image_loader_extension) { |
205 defines += [ "IMAGE_LOADER_EXTENSION=1" ] | 205 defines += [ "IMAGE_LOADER_EXTENSION=1" ] |
206 } | 206 } |
| 207 if (enable_topchrome_md) { |
| 208 defines += [ "ENABLE_TOPCHROME_MD=1" ] |
| 209 } |
207 if (enable_wayland_server) { | 210 if (enable_wayland_server) { |
208 defines += [ "ENABLE_WAYLAND_SERVER=1" ] | 211 defines += [ "ENABLE_WAYLAND_SERVER=1" ] |
209 } | 212 } |
210 if (enable_wifi_display) { | 213 if (enable_wifi_display) { |
211 defines += [ "ENABLE_WIFI_DISPLAY=1" ] | 214 defines += [ "ENABLE_WIFI_DISPLAY=1" ] |
212 } | 215 } |
213 if (proprietary_codecs) { | 216 if (proprietary_codecs) { |
214 defines += [ "USE_PROPRIETARY_CODECS" ] | 217 defines += [ "USE_PROPRIETARY_CODECS" ] |
215 } | 218 } |
216 if (enable_hangout_services_extension) { | 219 if (enable_hangout_services_extension) { |
(...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
441 # file doesn't exist, no error will be generated (probably MS tested this | 444 # file doesn't exist, no error will be generated (probably MS tested this |
442 # case but forgot the other one?). To reproduce this error, do a build, | 445 # case but forgot the other one?). To reproduce this error, do a build, |
443 # then delete the precompile.c.obj file, then build again. | 446 # then delete the precompile.c.obj file, then build again. |
444 cflags_c = [ "/wd4206" ] | 447 cflags_c = [ "/wd4206" ] |
445 } else if (is_mac) { | 448 } else if (is_mac) { |
446 precompiled_header = "build/precompile.h" | 449 precompiled_header = "build/precompile.h" |
447 precompiled_source = "//build/precompile.h" | 450 precompiled_source = "//build/precompile.h" |
448 } | 451 } |
449 } | 452 } |
450 } | 453 } |
OLD | NEW |