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