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

Side by Side Diff: chrome/chrome_exe.gypi

Issue 1469383005: New build flag system, convert Google Now flag (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: make separate gyp to avoid cycle Created 5 years 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
OLDNEW
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2012 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 { 5 {
6 'targets': [ 6 'targets': [
7 { 7 {
8 # GN version: //chrome 8 # GN version: //chrome
9 'target_name': 'chrome', 9 'target_name': 'chrome',
10 'type': 'none', 10 'type': 'none',
(...skipping 28 matching lines...) Expand all
39 'message': 'Reordering Imports', 39 'message': 'Reordering Imports',
40 }, 40 },
41 ], 41 ],
42 }], 42 }],
43 ], 43 ],
44 }, 44 },
45 { 45 {
46 # GN version: //chrome:chrome_initial 46 # GN version: //chrome:chrome_initial
47 'target_name': 'chrome_initial', 47 'target_name': 'chrome_initial',
48 'type': 'executable', 48 'type': 'executable',
49 'dependencies' : [ '../chrome/common_constants.gyp:version_header', ], 49 'dependencies' : [
50 '../chrome/common_constants.gyp:version_header',
51 '../chrome/chrome_features.gyp:chrome_common_features',
52 ],
50 # Name the exe chrome.exe, not chrome_initial.exe. 53 # Name the exe chrome.exe, not chrome_initial.exe.
51 'product_name': 'chrome', 54 'product_name': 'chrome',
52 'mac_bundle': 1, 55 'mac_bundle': 1,
53 'variables': { 56 'variables': {
54 'use_system_xdg_utils%': 0, 57 'use_system_xdg_utils%': 0,
55 'enable_wexit_time_destructors': 1, 58 'enable_wexit_time_destructors': 1,
56 }, 59 },
57 'sources': [ 60 'sources': [
58 # Note that due to InitializeSandboxInfo, this must be directly linked 61 # Note that due to InitializeSandboxInfo, this must be directly linked
59 # into chrome.exe, not into a dependent. 62 # into chrome.exe, not into a dependent.
(...skipping 559 matching lines...) Expand 10 before | Expand all | Expand 10 after
619 'dependencies': [ 622 'dependencies': [
620 'chrome_nacl_win64', 623 'chrome_nacl_win64',
621 ], 624 ],
622 }], 625 }],
623 ], 626 ],
624 }, 627 },
625 ], 628 ],
626 }], 629 }],
627 ], 630 ],
628 } 631 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698