| 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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 } | 194 } |
| 195 if (enable_rlz) { | 195 if (enable_rlz) { |
| 196 defines += [ "ENABLE_RLZ" ] | 196 defines += [ "ENABLE_RLZ" ] |
| 197 } | 197 } |
| 198 if (enable_plugin_installation) { | 198 if (enable_plugin_installation) { |
| 199 defines += [ "ENABLE_PLUGIN_INSTALLATION=1" ] | 199 defines += [ "ENABLE_PLUGIN_INSTALLATION=1" ] |
| 200 } | 200 } |
| 201 if (enable_app_list) { | 201 if (enable_app_list) { |
| 202 defines += [ "ENABLE_APP_LIST=1" ] | 202 defines += [ "ENABLE_APP_LIST=1" ] |
| 203 } | 203 } |
| 204 if (enable_settings_app) { | |
| 205 defines += [ "ENABLE_SETTINGS_APP=1" ] | |
| 206 } | |
| 207 if (enable_supervised_users) { | 204 if (enable_supervised_users) { |
| 208 defines += [ "ENABLE_SUPERVISED_USERS=1" ] | 205 defines += [ "ENABLE_SUPERVISED_USERS=1" ] |
| 209 } | 206 } |
| 210 if (enable_service_discovery) { | 207 if (enable_service_discovery) { |
| 211 defines += [ "ENABLE_SERVICE_DISCOVERY=1" ] | 208 defines += [ "ENABLE_SERVICE_DISCOVERY=1" ] |
| 212 } | 209 } |
| 213 if (enable_image_loader_extension) { | 210 if (enable_image_loader_extension) { |
| 214 defines += [ "IMAGE_LOADER_EXTENSION=1" ] | 211 defines += [ "IMAGE_LOADER_EXTENSION=1" ] |
| 215 } | 212 } |
| 216 if (enable_wayland_server) { | 213 if (enable_wayland_server) { |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 462 # file doesn't exist, no error will be generated (probably MS tested this | 459 # file doesn't exist, no error will be generated (probably MS tested this |
| 463 # case but forgot the other one?). To reproduce this error, do a build, | 460 # case but forgot the other one?). To reproduce this error, do a build, |
| 464 # then delete the precompile.c.obj file, then build again. | 461 # then delete the precompile.c.obj file, then build again. |
| 465 cflags_c = [ "/wd4206" ] | 462 cflags_c = [ "/wd4206" ] |
| 466 } else if (is_mac) { | 463 } else if (is_mac) { |
| 467 precompiled_header = "build/precompile.h" | 464 precompiled_header = "build/precompile.h" |
| 468 precompiled_source = "//build/precompile.h" | 465 precompiled_source = "//build/precompile.h" |
| 469 } | 466 } |
| 470 } | 467 } |
| 471 } | 468 } |
| OLD | NEW |