Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(285)

Side by Side Diff: build/config/BUILD.gn

Issue 1992393002: Enable external popup menu in Blimp, part 1/2. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase and update blimp_engine.gn Created 4 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/common.gypi ('k') | build/config/features.gni » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 150 matching lines...) Expand 10 before | Expand all | Expand 10 after
161 "DYNAMIC_ANNOTATIONS_EXTERNAL_IMPL=1", 161 "DYNAMIC_ANNOTATIONS_EXTERNAL_IMPL=1",
162 "WTF_USE_DYNAMIC_ANNOTATIONS_NOIMPL=1", 162 "WTF_USE_DYNAMIC_ANNOTATIONS_NOIMPL=1",
163 ] 163 ]
164 } 164 }
165 if (is_msan) { 165 if (is_msan) {
166 defines += [ "MEMORY_SANITIZER" ] 166 defines += [ "MEMORY_SANITIZER" ]
167 } 167 }
168 if (is_ubsan || is_ubsan_vptr || is_ubsan_security) { 168 if (is_ubsan || is_ubsan_vptr || is_ubsan_security) {
169 defines += [ "UNDEFINED_SANITIZER" ] 169 defines += [ "UNDEFINED_SANITIZER" ]
170 } 170 }
171 if (use_external_popup_menu) {
172 defines += [ "USE_EXTERNAL_POPUP_MENU=1" ]
173 }
171 if (enable_webrtc) { 174 if (enable_webrtc) {
172 defines += [ "ENABLE_WEBRTC=1" ] 175 defines += [ "ENABLE_WEBRTC=1" ]
173 } 176 }
174 if (!enable_nacl) { 177 if (!enable_nacl) {
175 defines += [ "DISABLE_NACL" ] 178 defines += [ "DISABLE_NACL" ]
176 } 179 }
177 if (enable_extensions) { 180 if (enable_extensions) {
178 defines += [ "ENABLE_EXTENSIONS=1" ] 181 defines += [ "ENABLE_EXTENSIONS=1" ]
179 } 182 }
180 if (enable_task_manager) { 183 if (enable_task_manager) {
(...skipping 266 matching lines...) Expand 10 before | Expand all | Expand 10 after
447 # file doesn't exist, no error will be generated (probably MS tested this 450 # file doesn't exist, no error will be generated (probably MS tested this
448 # case but forgot the other one?). To reproduce this error, do a build, 451 # case but forgot the other one?). To reproduce this error, do a build,
449 # then delete the precompile.c.obj file, then build again. 452 # then delete the precompile.c.obj file, then build again.
450 cflags_c = [ "/wd4206" ] 453 cflags_c = [ "/wd4206" ]
451 } else if (is_mac) { 454 } else if (is_mac) {
452 precompiled_header = "build/precompile.h" 455 precompiled_header = "build/precompile.h"
453 precompiled_source = "//build/precompile.h" 456 precompiled_source = "//build/precompile.h"
454 } 457 }
455 } 458 }
456 } 459 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | build/config/features.gni » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698