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

Side by Side Diff: build/common.gypi

Issue 7329024: Revert 91859 - Porting ppapi_tests framework to postMessage. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 5 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 | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/test/ui/ppapi_uitest.cc » ('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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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 # IMPORTANT: 5 # IMPORTANT:
6 # Please don't directly include this file if you are building via gyp_chromium, 6 # Please don't directly include this file if you are building via gyp_chromium,
7 # since gyp_chromium is automatically forcing its inclusion. 7 # since gyp_chromium is automatically forcing its inclusion.
8 { 8 {
9 # Variables expected to be overriden on the GYP command line (-D) or by 9 # Variables expected to be overriden on the GYP command line (-D) or by
10 # ~/.gyp/include.gypi. 10 # ~/.gyp/include.gypi.
(...skipping 330 matching lines...) Expand 10 before | Expand all | Expand 10 after
341 # Yes(1) means set use the common linker options. 341 # Yes(1) means set use the common linker options.
342 'msvs_use_common_linker_extras%': 1, 342 'msvs_use_common_linker_extras%': 1,
343 343
344 # TODO(sgk): eliminate this if possible. 344 # TODO(sgk): eliminate this if possible.
345 # It would be nicer to support this via a setting in 'target_defaults' 345 # It would be nicer to support this via a setting in 'target_defaults'
346 # in chrome/app/locales/locales.gypi overriding the setting in the 346 # in chrome/app/locales/locales.gypi overriding the setting in the
347 # 'Debug' configuration in the 'target_defaults' dict below, 347 # 'Debug' configuration in the 'target_defaults' dict below,
348 # but that doesn't work as we'd like. 348 # but that doesn't work as we'd like.
349 'msvs_debug_link_incremental%': '2', 349 'msvs_debug_link_incremental%': '2',
350 350
351 # TODO(dmichael): eliminate this when possible.
352 # This flag, when 0, makes ppapi build without synchronous scripting
353 # support in public interfaces. This is a temporary transitional option.
354 'pepper_scripting%': 1,
355
356 # Needed for some of the largest modules. 351 # Needed for some of the largest modules.
357 'msvs_debug_link_nonincremental%': '1', 352 'msvs_debug_link_nonincremental%': '1',
358 353
359 # This is the location of the sandbox binary. Chrome looks for this before 354 # This is the location of the sandbox binary. Chrome looks for this before
360 # running the zygote process. If found, and SUID, it will be used to 355 # running the zygote process. If found, and SUID, it will be used to
361 # sandbox the zygote process and, thus, all renderer processes. 356 # sandbox the zygote process and, thus, all renderer processes.
362 'linux_sandbox_path%': '', 357 'linux_sandbox_path%': '',
363 358
364 # Set this to true to enable SELinux support. 359 # Set this to true to enable SELinux support.
365 'selinux%': 0, 360 'selinux%': 0,
(...skipping 350 matching lines...) Expand 10 before | Expand all | Expand 10 after
716 }], 711 }],
717 ['p2p_apis==1', { 712 ['p2p_apis==1', {
718 'defines': ['ENABLE_P2P_APIS=1'], 713 'defines': ['ENABLE_P2P_APIS=1'],
719 }], 714 }],
720 ['proprietary_codecs==1', { 715 ['proprietary_codecs==1', {
721 'defines': ['USE_PROPRIETARY_CODECS'], 716 'defines': ['USE_PROPRIETARY_CODECS'],
722 }], 717 }],
723 ['enable_flapper_hacks==1', { 718 ['enable_flapper_hacks==1', {
724 'defines': ['ENABLE_FLAPPER_HACKS=1'], 719 'defines': ['ENABLE_FLAPPER_HACKS=1'],
725 }], 720 }],
726 ['pepper_scripting==0', {
727 'defines': ['PPAPI_INSTANCE_REMOVE_SCRIPTING',
728 'PPAPI_VAR_REMOVE_SCRIPTING'],
729 }],
730 ['fastbuild!=0', { 721 ['fastbuild!=0', {
731 'conditions': [ 722 'conditions': [
732 # For Windows, we don't genererate debug information. 723 # For Windows, we don't genererate debug information.
733 ['OS=="win"', { 724 ['OS=="win"', {
734 'msvs_settings': { 725 'msvs_settings': {
735 'VCLinkerTool': { 726 'VCLinkerTool': {
736 'GenerateDebugInformation': 'false', 727 'GenerateDebugInformation': 'false',
737 }, 728 },
738 'VCCLCompilerTool': { 729 'VCCLCompilerTool': {
739 'DebugInformationFormat': '0', 730 'DebugInformationFormat': '0',
(...skipping 1098 matching lines...) Expand 10 before | Expand all | Expand 10 after
1838 # and therefore SYMROOT, needs to be set at the project level. 1829 # and therefore SYMROOT, needs to be set at the project level.
1839 'SYMROOT': '<(DEPTH)/xcodebuild', 1830 'SYMROOT': '<(DEPTH)/xcodebuild',
1840 }, 1831 },
1841 } 1832 }
1842 1833
1843 # Local Variables: 1834 # Local Variables:
1844 # tab-width:2 1835 # tab-width:2
1845 # indent-tabs-mode:nil 1836 # indent-tabs-mode:nil
1846 # End: 1837 # End:
1847 # vim: set expandtab tabstop=2 shiftwidth=2: 1838 # vim: set expandtab tabstop=2 shiftwidth=2:
OLDNEW
« no previous file with comments | « no previous file | chrome/test/ui/ppapi_uitest.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698