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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 138593004: Use an alternate mechanism for CreateFile calls in Chrome (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: make IAT_patch behavior not be dll specific Created 6 years, 11 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
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 'conditions': [ 5 'conditions': [
6 ['OS=="mac" or OS=="win"', { 6 ['OS=="mac" or OS=="win"', {
7 'targets': [ 7 'targets': [
8 { 8 {
9 'target_name': 'chrome_dll', 9 'target_name': 'chrome_dll',
10 'type': 'none', 10 'type': 'none',
(...skipping 66 matching lines...) Expand 10 before | Expand all | Expand 10 after
77 'type': 'shared_library', 77 'type': 'shared_library',
78 'variables': { 78 'variables': {
79 'enable_wexit_time_destructors': 1, 79 'enable_wexit_time_destructors': 1,
80 }, 80 },
81 'dependencies': [ 81 'dependencies': [
82 '<@(chromium_browser_dependencies)', 82 '<@(chromium_browser_dependencies)',
83 '../components/components.gyp:policy', 83 '../components/components.gyp:policy',
84 '../content/content.gyp:content_app_browser', 84 '../content/content.gyp:content_app_browser',
85 ], 85 ],
86 'conditions': [ 86 'conditions': [
87 ['OS=="win"', {
88 'dependencies': [
89 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf',
90 ],
91 }],
87 ['use_aura==1', { 92 ['use_aura==1', {
88 'dependencies': [ 93 'dependencies': [
89 '../ui/compositor/compositor.gyp:compositor', 94 '../ui/compositor/compositor.gyp:compositor',
90 ], 95 ],
91 }], 96 }],
92 ['OS=="win" and target_arch=="ia32" and MSVS_VERSION!="2013"', { 97 ['OS=="win" and target_arch=="ia32" and MSVS_VERSION!="2013"', {
93 # TODO(scottmg): The assembler is very broken in VS2013 and 98 # TODO(scottmg): The assembler is very broken in VS2013 and
94 # crashes on the generated .asm file, so disable this for now. 99 # crashes on the generated .asm file, so disable this for now.
95 # This should be revisited after a VS2013 update. See 100 # This should be revisited after a VS2013 update. See
96 # http://crbug.com/288948. 101 # http://crbug.com/288948.
(...skipping 259 matching lines...) Expand 10 before | Expand all | Expand 10 after
356 'CHROME_MULTIPLE_DLL_CHILD', 361 'CHROME_MULTIPLE_DLL_CHILD',
357 ], 362 ],
358 'sources': [ 363 'sources': [
359 '<(SHARED_INTERMEDIATE_DIR)/chrome/common_resources.rc', 364 '<(SHARED_INTERMEDIATE_DIR)/chrome/common_resources.rc',
360 '<(SHARED_INTERMEDIATE_DIR)/chrome/extensions_api_resources.rc', 365 '<(SHARED_INTERMEDIATE_DIR)/chrome/extensions_api_resources.rc',
361 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', 366 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc',
362 'app/chrome_main.cc', 367 'app/chrome_main.cc',
363 'app/chrome_main_delegate.cc', 368 'app/chrome_main_delegate.cc',
364 'app/chrome_main_delegate.h', 369 'app/chrome_main_delegate.h',
365 ], 370 ],
371 'conditions': [
372 ['OS=="win"', {
373 'dependencies': [
374 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf',
375 ],
376 }],
377 ],
366 }, # target chrome_child_dll 378 }, # target chrome_child_dll
367 ], 379 ],
368 }], 380 }],
369 ], 381 ],
370 } 382 }
OLDNEW
« base/win/iat_patch_function.cc ('K') | « build/common.gypi ('k') | chrome/chrome_exe.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698