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

Side by Side Diff: content/content.gyp

Issue 1387963006: Adding error handlers to setup.exe (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix lint errors/warnings Created 5 years, 2 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
« no previous file with comments | « content/app/startup_helper_win.cc ('k') | content/content_app.gypi » ('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) 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 'variables': { 6 'variables': {
7 'chromium_code': 1, # Use higher warning level. 7 'chromium_code': 1, # Use higher warning level.
8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine. 8 'chromium_enable_vtune_jit_for_v8%': 0, # enable the vtune support for V8 e ngine.
9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' , 9 'directxsdk_exists': '<!pymod_do_main(dir_exists ../third_party/directxsdk)' ,
10 }, 10 },
(...skipping 13 matching lines...) Expand all
24 'conditions': [ 24 'conditions': [
25 ['OS != "ios"', { 25 ['OS != "ios"', {
26 'includes': [ 26 'includes': [
27 '../build/win_precompile.gypi', 27 '../build/win_precompile.gypi',
28 'content_resources.gypi', 28 'content_resources.gypi',
29 ], 29 ],
30 }], 30 }],
31 ['OS == "win"', { 31 ['OS == "win"', {
32 'targets': [ 32 'targets': [
33 { 33 {
34 # GN: //content:content_startup_helper_win 34 # GN: //content:sandbox_helper_win
35 'target_name': 'content_startup_helper_win', 35 'target_name': 'sandbox_helper_win',
36 'type': 'static_library', 36 'type': 'static_library',
37 'include_dirs': [ 37 'include_dirs': [
38 '..', 38 '..',
39 ], 39 ],
40 'dependencies': [ 40 'dependencies': [
41 '../base/base.gyp:base',
42 '../base/base.gyp:base_i18n',
43 '../sandbox/sandbox.gyp:sandbox', 41 '../sandbox/sandbox.gyp:sandbox',
44 ], 42 ],
45 'sources': [ 43 'sources': [
46 'app/startup_helper_win.cc', 44 'app/sandbox_helper_win.cc',
47 'public/app/startup_helper_win.h', 45 'public/app/sandbox_helper_win.h',
48 ], 46 ],
49 } 47 }
50 ], 48 ],
51 }], 49 }],
52 # In component mode, we build all of content as a single DLL. 50 # In component mode, we build all of content as a single DLL.
53 # However, in the static mode, we need to build content as multiple 51 # However, in the static mode, we need to build content as multiple
54 # targets in order to prevent dependencies from getting introduced 52 # targets in order to prevent dependencies from getting introduced
55 # upstream unnecessarily (e.g., content_renderer depends on allocator 53 # upstream unnecessarily (e.g., content_renderer depends on allocator
56 # and chrome_exe depends on content_common but we don't want 54 # and chrome_exe depends on content_common but we don't want
57 # chrome_exe to have to depend on allocator). 55 # chrome_exe to have to depend on allocator).
(...skipping 585 matching lines...) Expand 10 before | Expand all | Expand 10 after
643 ], 641 ],
644 }, 642 },
645 ], 643 ],
646 }], 644 }],
647 ], 645 ],
648 }, 646 },
649 ], 647 ],
650 }], # OS == "android" 648 }], # OS == "android"
651 ], 649 ],
652 } 650 }
OLDNEW
« no previous file with comments | « content/app/startup_helper_win.cc ('k') | content/content_app.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698