summaryrefslogtreecommitdiffstats
path: root/build
diff options
context:
space:
mode:
authorbrettw <brettw@chromium.org>2015-12-07 13:18:37 -0800
committerCommit bot <commit-bot@chromium.org>2015-12-07 21:20:07 +0000
commit5a06ad47d1b3bd8b0ff13c9966ebf4b80cb202a4 (patch)
tree1f65d4dd532574560fcf086ccab25d474d5517c0 /build
parentc4727d09b641e20d9047bd8e542748e10955025c (diff)
downloadchromium_src-5a06ad47d1b3bd8b0ff13c9966ebf4b80cb202a4.zip
chromium_src-5a06ad47d1b3bd8b0ff13c9966ebf4b80cb202a4.tar.gz
chromium_src-5a06ad47d1b3bd8b0ff13c9966ebf4b80cb202a4.tar.bz2
Fix profiling=1 GYP build.
https://codereview.chromium.org/1498733007 broke the GYP build for profiling=1 because it used the new build flag system, but accidentally kept the definition of ENABLE_PROFILING, so BUILDFLAG(ENABLE_PROFILING) expanded to BUILDFLAG(1) which expands to BUILFLAG_INTERNAL_1 which isn't defined. This just deletes the old ENABLE_PROFILING definition. BUG=567096 TBR=davve@opera.com Review URL: https://codereview.chromium.org/1501333005 Cr-Commit-Position: refs/heads/master@{#363587}
Diffstat (limited to 'build')
-rw-r--r--build/common.gypi3
1 files changed, 0 insertions, 3 deletions
diff --git a/build/common.gypi b/build/common.gypi
index 6b2cb0a..63fce9c 100644
--- a/build/common.gypi
+++ b/build/common.gypi
@@ -2743,9 +2743,6 @@
['image_loader_extension==1', {
'defines': ['IMAGE_LOADER_EXTENSION=1'],
}],
- ['profiling==1', {
- 'defines': ['ENABLE_PROFILING=1'],
- }],
['enable_webrtc==1', {
'defines': ['ENABLE_WEBRTC=1'],
}],