| 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/crypto.gni") | 7 import("//build/config/crypto.gni") |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/sanitizers/sanitizers.gni") | 9 import("//build/config/sanitizers/sanitizers.gni") |
| 10 import("//build/config/ui.gni") | 10 import("//build/config/ui.gni") |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 215 } | 215 } |
| 216 if (enable_autofill_dialog) { | 216 if (enable_autofill_dialog) { |
| 217 defines += [ "ENABLE_AUTOFILL_DIALOG=1" ] | 217 defines += [ "ENABLE_AUTOFILL_DIALOG=1" ] |
| 218 } | 218 } |
| 219 if (enable_wifi_bootstrapping) { | 219 if (enable_wifi_bootstrapping) { |
| 220 defines += [ "ENABLE_WIFI_BOOTSTRAPPING=1" ] | 220 defines += [ "ENABLE_WIFI_BOOTSTRAPPING=1" ] |
| 221 } | 221 } |
| 222 if (enable_image_loader_extension) { | 222 if (enable_image_loader_extension) { |
| 223 defines += [ "IMAGE_LOADER_EXTENSION=1" ] | 223 defines += [ "IMAGE_LOADER_EXTENSION=1" ] |
| 224 } | 224 } |
| 225 if (enable_remoting) { | |
| 226 defines += [ "ENABLE_REMOTING=1" ] | |
| 227 } | |
| 228 if (enable_google_now) { | 225 if (enable_google_now) { |
| 229 defines += [ "ENABLE_GOOGLE_NOW=1" ] | 226 defines += [ "ENABLE_GOOGLE_NOW=1" ] |
| 230 } | 227 } |
| 231 if (enable_one_click_signin) { | 228 if (enable_one_click_signin) { |
| 232 defines += [ "ENABLE_ONE_CLICK_SIGNIN" ] | 229 defines += [ "ENABLE_ONE_CLICK_SIGNIN" ] |
| 233 } | 230 } |
| 234 if (enable_hidpi) { | 231 if (enable_hidpi) { |
| 235 defines += [ "ENABLE_HIDPI=1" ] | 232 defines += [ "ENABLE_HIDPI=1" ] |
| 236 } | 233 } |
| 237 if (enable_topchrome_md) { | 234 if (enable_topchrome_md) { |
| (...skipping 204 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 442 # with precompiled headers since the source file that's "compiled" for | 439 # with precompiled headers since the source file that's "compiled" for |
| 443 # making the precompiled header is empty. | 440 # making the precompiled header is empty. |
| 444 # | 441 # |
| 445 # This error doesn't happen every time. In VS2013, it seems if the .pch | 442 # This error doesn't happen every time. In VS2013, it seems if the .pch |
| 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 } | 447 } |
| 451 } | 448 } |
| OLD | NEW |