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

Side by Side Diff: build/release.gypi

Issue 1438853002: Remove all .gyp and .gypi files. (Closed) Base URL: https://github.com/domokit/mojo.git@master
Patch Set: Created 5 years, 1 month 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/protoc_java.gypi ('k') | build/repack_action.gypi » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
(Empty)
1 {
2 'conditions': [
3 # Handle build types.
4 ['buildtype=="Dev"', {
5 'includes': ['internal/release_impl.gypi'],
6 }],
7 ['buildtype=="Dev" and incremental_chrome_dll==1', {
8 'msvs_settings': {
9 'VCLinkerTool': {
10 # Enable incremental linking and disable conflicting link options:
11 # http://msdn.microsoft.com/en-us/library/4khtbfyf.aspx
12 'LinkIncremental': '2',
13 'OptimizeReferences': '1',
14 'EnableCOMDATFolding': '1',
15 'Profile': 'false',
16 },
17 },
18 }],
19 ['buildtype=="Official"', {
20 'includes': ['internal/release_impl_official.gypi'],
21 }],
22 # TODO(bradnelson): may also need:
23 # checksenabled
24 # coverage
25 # dom_stats
26 # pgo_instrument
27 # pgo_optimize
28 ],
29 }
OLDNEW
« no previous file with comments | « build/protoc_java.gypi ('k') | build/repack_action.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698