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

Issue 10402002: Revert 137083 - Disabling precompiled headers for official builds with msvs2010 (Closed)

Created:
8 years, 7 months ago by Nirnimesh
Modified:
8 years, 7 months ago
Reviewers:
bradn
CC:
chromium-reviews
Visibility:
Public.

Description

Revert 137083 - Disabling precompiled headers for official builds with msvs2010 ++++ REVERT NOTICE ++++ Broke update phase on all pyauto chromium bots. See one at: http://build.chromium.org/p/chromium.pyauto/builders/Linux%20%28deb%29/builds/33094/steps/update/logs/stdio +++++++++++++++++++++++ Selectively disabling precompiled headers for release builds with msvs2010 Precompiled headers seem to interact badly with auto-sharding using the msvs_shard option. BUG=http://code.google.com/p/chromium/issues/detail?id=127875 TEST=builds on trybots. R=kerz@chromium.org Review URL: https://chromiumcodereview.appspot.com/10392091 TBR=bradnelson@google.com Committed: https://src.chromium.org/viewvc/chrome?view=rev&revision=137085

Patch Set 1 #

Unified diffs Side-by-side diffs Delta from patch set Stats (+16 lines, -20 lines) Patch
M build/common.gypi View 7 chunks +16 lines, -20 lines 0 comments Download

Messages

Total messages: 2 (0 generated)
Nirnimesh
8 years, 7 months ago (2012-05-15 07:29:50 UTC) #1
bradn
8 years, 7 months ago (2012-05-15 16:28:09 UTC) #2
LGTM

On Tue, May 15, 2012 at 12:29 AM, <nirnimesh@chromium.org> wrote:

> Reviewers: bradn,
>
> Description:
> Revert 137083 - Disabling precompiled headers for official builds with
> msvs2010
>
> ++++ REVERT NOTICE ++++
>
> Broke update phase on all pyauto chromium bots.
> See one at:
> http://build.chromium.org/p/**chromium.pyauto/builders/**
>
Linux%20%28deb%29/builds/**33094/steps/update/logs/stdio<http://build.chromium.org/p/chromium.pyauto/builders/Linux%20%28deb%29/builds/33094/steps/update/logs/stdio>
>
> +++++++++++++++++++++++
>
> Selectively disabling precompiled headers for release builds with msvs2010
> Precompiled headers seem to interact badly with auto-sharding using the
> msvs_shard option.
>
>
BUG=http://code.google.com/p/**chromium/issues/detail?id=**127875<http://code.google.com/p/chromium/issues/detail?id=127875>
> TEST=builds on trybots.
> R=kerz@chromium.org
>
> Review URL:
https://chromiumcodereview.**appspot.com/10392091<https://chromiumcodereview....
>
> TBR=bradnelson@google.com
>
> Please review this at
https://chromiumcodereview.**appspot.com/10402002/<https://chromiumcodereview...
>
> SVN Base:
svn://svn.chromium.org/chrome/**trunk/src/<http://svn.chromium.org/chrome/trunk/src/>
>
> Affected files:
>  M     build/common.gypi
>
>
> Index: build/common.gypi
> ==============================**==============================**=======
> --- build/common.gypi   (revision 137084)
> +++ build/common.gypi   (working copy)
> @@ -52,16 +52,6 @@
>           # Allows us to *temporarily* disable certain things for
>           # staging.  Only set to 1 in a GYP_DEFINES.
>           'android_upstream_bringup%': 0,
> -
> -          # Override buildtype to select the desired build flavor.
> -          # Dev - everyday build for development/testing
> -          # Official - release build (generally implies additional
> processing)
> -          # TODO(mmoss) Once 'buildtype' is fully supported (e.g. Windows
> gyp
> -          # conversion is done), some of the things which are now
> controlled by
> -          # 'branding', such as symbol generation, will need to be
> refactored
> -          # based on 'buildtype' (i.e. we don't care about saving symbols
> for
> -          # non-Official # builds).
> -          'buildtype%': 'Dev',
>         },
>         # Copy conditionally-set variables out one scope.
>         'chromeos%': '<(chromeos)',
> @@ -74,7 +64,6 @@
>         'enable_touch_ui%': '<(enable_touch_ui)',
>         'enable_metro%': '<(enable_metro)',
>         'android_upstream_bringup%': '<(android_upstream_bringup)',
> -        'buildtype%': '<(buildtype)',
>
>         # Compute the architecture that we're building on.
>         'conditions': [
> @@ -137,7 +126,6 @@
>       'enable_touch_ui%': '<(enable_touch_ui)',
>       'enable_metro%': '<(enable_metro)',
>       'android_upstream_bringup%': '<(android_upstream_bringup)',
> -      'chromium_win_pch%': '<(chromium_win_pch)',
>
>       # We used to provide a variable for changing how libraries were
> built.
>       # This variable remains until we can clean up all the users.
> @@ -149,7 +137,15 @@
>       # Override branding to select the desired branding flavor.
>       'branding%': 'Chromium',
>
> -      'buildtype%': '<(buildtype)',
> +      # Override buildtype to select the desired build flavor.
> +      # Dev - everyday build for development/testing
> +      # Official - release build (generally implies additional processing)
> +      # TODO(mmoss) Once 'buildtype' is fully supported (e.g. Windows gyp
> +      # conversion is done), some of the things which are now controlled
> by
> +      # 'branding', such as symbol generation, will need to be refactored
> based
> +      # on 'buildtype' (i.e. we don't care about saving symbols for
> non-Official
> +      # builds).
> +      'buildtype%': 'Dev',
>
>       # Default architecture we're building for is the architecture we're
>       # building on.
> @@ -287,6 +283,12 @@
>       # Enables support for promo resource service.
>       'enable_promo_resource_**service%': 1,
>
> +      # XInput2 multitouch support is disabled by default (use_xi2_mt=0).
> +      # Setting to non-zero value enables XI2 MT. When XI2 MT is enabled,
> +      # the input value also defines the required XI2 minor minimum
> version.
> +      # For example, use_xi2_mt=2 means XI2.2 or above version is
> required.
> +      'use_xi2_mt%': 0,
> +
>       # Use of precompiled headers on Windows.
>       #
>       # This is on by default in VS 2010, but off by default for VS
> @@ -306,12 +308,6 @@
>       # for details.
>       'chromium_win_pch%': 0,
>
> -      # XInput2 multitouch support is disabled by default (use_xi2_mt=0).
> -      # Setting to non-zero value enables XI2 MT. When XI2 MT is enabled,
> -      # the input value also defines the required XI2 minor minimum
> version.
> -      # For example, use_xi2_mt=2 means XI2.2 or above version is
> required.
> -      'use_xi2_mt%': 0,
> -
>       # Set this to true when building with Clang.
>       # See
http://code.google.com/p/**chromium/wiki/Clang<http://code.google.com/p/chrom...
details.
>       'clang%': 0,
> @@ -445,7 +441,7 @@
>         }],
>
>         # Turn precompiled headers on by default for VS 2010.
> -        ['OS=="win" and MSVS_VERSION=="2010" and buildtype!="Official"', {
> +        ['OS=="win" and MSVS_VERSION=="2010"', {
>           'chromium_win_pch%': 1
>         }],
>
>
>
>

Powered by Google App Engine
This is Rietveld 408576698