| 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 } | |
| 210 if (enable_wayland_server) { | 207 if (enable_wayland_server) { |
| 211 defines += [ "ENABLE_WAYLAND_SERVER=1" ] | 208 defines += [ "ENABLE_WAYLAND_SERVER=1" ] |
| 212 } | 209 } |
| 213 if (enable_wifi_display) { | 210 if (enable_wifi_display) { |
| 214 defines += [ "ENABLE_WIFI_DISPLAY=1" ] | 211 defines += [ "ENABLE_WIFI_DISPLAY=1" ] |
| 215 } | 212 } |
| 216 if (proprietary_codecs) { | 213 if (proprietary_codecs) { |
| 217 defines += [ "USE_PROPRIETARY_CODECS" ] | 214 defines += [ "USE_PROPRIETARY_CODECS" ] |
| 218 } | 215 } |
| 219 if (enable_hangout_services_extension) { | 216 if (enable_hangout_services_extension) { |
| (...skipping 224 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 444 # file doesn't exist, no error will be generated (probably MS tested this | 441 # file doesn't exist, no error will be generated (probably MS tested this |
| 445 # case but forgot the other one?). To reproduce this error, do a build, | 442 # case but forgot the other one?). To reproduce this error, do a build, |
| 446 # then delete the precompile.c.obj file, then build again. | 443 # then delete the precompile.c.obj file, then build again. |
| 447 cflags_c = [ "/wd4206" ] | 444 cflags_c = [ "/wd4206" ] |
| 448 } else if (is_mac) { | 445 } else if (is_mac) { |
| 449 precompiled_header = "build/precompile.h" | 446 precompiled_header = "build/precompile.h" |
| 450 precompiled_source = "//build/precompile.h" | 447 precompiled_source = "//build/precompile.h" |
| 451 } | 448 } |
| 452 } | 449 } |
| 453 } | 450 } |
| OLD | NEW |