diff options
author | chrisha@chromium.org <chrisha@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2014-04-03 18:34:24 +0000 |
---|---|---|
committer | chrisha@chromium.org <chrisha@chromium.org@4c0a9323-5329-0410-9bdc-e9ce6186880e> | 2014-04-03 18:34:24 +0000 |
commit | 611f8b7f32397768e57d88daf264ec1452eb6e9e (patch) | |
tree | f81714dce0a47121c27503130a623aca13bf264e /build/release.gypi | |
parent | Fix ElfCoreDumpTest.ValidCoreFile unit test. (diff) | |
download | breakpad-611f8b7f32397768e57d88daf264ec1452eb6e9e.tar.xz |
Move build configuration to root of repository.
This is in preparation for creating GYP build files for each platform.
BUG=https://code.google.com/p/google-breakpad/issues/detail?id=575
R=mark@chromium.org
Review URL: https://breakpad.appspot.com/1414002
git-svn-id: http://google-breakpad.googlecode.com/svn/trunk@1304 4c0a9323-5329-0410-9bdc-e9ce6186880e
Diffstat (limited to 'build/release.gypi')
-rw-r--r-- | build/release.gypi | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/build/release.gypi b/build/release.gypi new file mode 100644 index 00000000..4b012b51 --- /dev/null +++ b/build/release.gypi @@ -0,0 +1,18 @@ +{ + 'conditions': [ + # Handle build types. + ['buildtype=="Dev"', { + 'includes': ['internal/release_impl.gypi'], + }], + ['buildtype=="Official"', { + 'includes': ['internal/release_impl_official.gypi'], + }], + # TODO(bradnelson): may also need: + # checksenabled + # coverage + # dom_stats + # pgo_instrument + # pgo_optimize + # purify + ], +} |