| 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 171 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 182 } | 182 } |
| 183 if (enable_extensions) { | 183 if (enable_extensions) { |
| 184 defines += [ "ENABLE_EXTENSIONS=1" ] | 184 defines += [ "ENABLE_EXTENSIONS=1" ] |
| 185 } | 185 } |
| 186 if (enable_task_manager) { | 186 if (enable_task_manager) { |
| 187 defines += [ "ENABLE_TASK_MANAGER=1" ] | 187 defines += [ "ENABLE_TASK_MANAGER=1" ] |
| 188 } | 188 } |
| 189 if (enable_themes) { | 189 if (enable_themes) { |
| 190 defines += [ "ENABLE_THEMES=1" ] | 190 defines += [ "ENABLE_THEMES=1" ] |
| 191 } | 191 } |
| 192 if (enable_session_service) { | |
| 193 defines += [ "ENABLE_SESSION_SERVICE=1" ] | |
| 194 } | |
| 195 if (enable_rlz) { | 192 if (enable_rlz) { |
| 196 defines += [ "ENABLE_RLZ" ] | 193 defines += [ "ENABLE_RLZ" ] |
| 197 } | 194 } |
| 198 if (enable_supervised_users) { | |
| 199 defines += [ "ENABLE_SUPERVISED_USERS=1" ] | |
| 200 } | |
| 201 if (enable_image_loader_extension) { | 195 if (enable_image_loader_extension) { |
| 202 defines += [ "IMAGE_LOADER_EXTENSION=1" ] | 196 defines += [ "IMAGE_LOADER_EXTENSION=1" ] |
| 203 } | 197 } |
| 204 if (enable_wayland_server) { | 198 if (enable_wayland_server) { |
| 205 defines += [ "ENABLE_WAYLAND_SERVER=1" ] | 199 defines += [ "ENABLE_WAYLAND_SERVER=1" ] |
| 206 } | 200 } |
| 207 if (enable_wifi_display) { | 201 if (enable_wifi_display) { |
| 208 defines += [ "ENABLE_WIFI_DISPLAY=1" ] | 202 defines += [ "ENABLE_WIFI_DISPLAY=1" ] |
| 209 } | 203 } |
| 210 if (proprietary_codecs) { | 204 if (proprietary_codecs) { |
| (...skipping 250 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 461 # file doesn't exist, no error will be generated (probably MS tested this | 455 # file doesn't exist, no error will be generated (probably MS tested this |
| 462 # case but forgot the other one?). To reproduce this error, do a build, | 456 # case but forgot the other one?). To reproduce this error, do a build, |
| 463 # then delete the precompile.c.obj file, then build again. | 457 # then delete the precompile.c.obj file, then build again. |
| 464 cflags_c = [ "/wd4206" ] | 458 cflags_c = [ "/wd4206" ] |
| 465 } else if (is_mac) { | 459 } else if (is_mac) { |
| 466 precompiled_header = "build/precompile.h" | 460 precompiled_header = "build/precompile.h" |
| 467 precompiled_source = "//build/precompile.h" | 461 precompiled_source = "//build/precompile.h" |
| 468 } | 462 } |
| 469 } | 463 } |
| 470 } | 464 } |
| OLD | NEW |