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

Side by Side Diff: content/content.gyp

Issue 470523005: Move startup_helper_win.cc to separate target for incremental build (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: restore exe behavior for sandbox Created 6 years, 4 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 | Annotate | Revision Log
« no previous file with comments | « chrome/chrome_exe.gypi ('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 10 matching lines...) Expand all
21 }], 21 }],
22 ], 22 ],
23 }, 23 },
24 'conditions': [ 24 'conditions': [
25 ['OS != "ios"', { 25 ['OS != "ios"', {
26 'includes': [ 26 'includes': [
27 'content_common_mojo_bindings.gypi', 27 'content_common_mojo_bindings.gypi',
28 '../build/win_precompile.gypi', 28 '../build/win_precompile.gypi',
29 ], 29 ],
30 }], 30 }],
31 ['OS == "win"', {
32 'targets': [
33 {
34 'target_name': 'content_startup_helper_win',
35 'type': 'static_library',
36 'include_dirs': [
37 '..',
38 ],
39 'dependencies': [
40 '../base/base.gyp:base',
41 '../base/base.gyp:base_i18n',
42 '../sandbox/sandbox.gyp:sandbox',
43 ],
44 'sources': [
45 'app/startup_helper_win.cc',
46 'public/app/startup_helper_win.h',
47 ],
48 }
49 ],
50 }],
31 # In component mode, we build all of content as a single DLL. 51 # In component mode, we build all of content as a single DLL.
32 # However, in the static mode, we need to build content as multiple 52 # However, in the static mode, we need to build content as multiple
33 # targets in order to prevent dependencies from getting introduced 53 # targets in order to prevent dependencies from getting introduced
34 # upstream unnecessarily (e.g., content_renderer depends on allocator 54 # upstream unnecessarily (e.g., content_renderer depends on allocator
35 # and chrome_exe depends on content_common but we don't want 55 # and chrome_exe depends on content_common but we don't want
36 # chrome_exe to have to depend on allocator). 56 # chrome_exe to have to depend on allocator).
37 ['component=="static_library"', { 57 ['component=="static_library"', {
38 'target_defines': [ 58 'target_defines': [
39 'COMPILE_CONTENT_STATICALLY', 59 'COMPILE_CONTENT_STATICALLY',
40 ], 60 ],
(...skipping 551 matching lines...) Expand 10 before | Expand all | Expand 10 after
592 'browser/gamepad/canonical_axis_index_list.h', 612 'browser/gamepad/canonical_axis_index_list.h',
593 'browser/gamepad/canonical_button_index_list.h', 613 'browser/gamepad/canonical_button_index_list.h',
594 ], 614 ],
595 }, 615 },
596 'includes': [ '../build/android/java_cpp_template.gypi' ], 616 'includes': [ '../build/android/java_cpp_template.gypi' ],
597 }, 617 },
598 ], 618 ],
599 }], # OS == "android" 619 }], # OS == "android"
600 ], 620 ],
601 } 621 }
OLDNEW
« no previous file with comments | « chrome/chrome_exe.gypi ('k') | content/content_app.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698