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

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: Flags, tests and some gyp-fu 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 64 matching lines...) Expand 10 before | Expand all | Expand 10 after
75 'type': 'shared_library', 75 'type': 'shared_library',
76 'variables': { 76 'variables': {
77 'enable_wexit_time_destructors': 1, 77 'enable_wexit_time_destructors': 1,
78 }, 78 },
79 'dependencies': [ 79 'dependencies': [
80 '<@(chromium_browser_dependencies)', 80 '<@(chromium_browser_dependencies)',
81 '../components/components.gyp:policy', 81 '../components/components.gyp:policy',
82 '../content/content.gyp:content_app_browser', 82 '../content/content.gyp:content_app_browser',
83 ], 83 ],
84 'conditions': [ 84 'conditions': [
85 ['OS=="win"', {
86 'dependencies': [
87 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf',
88 ],
89 }],
85 ['use_aura==1', { 90 ['use_aura==1', {
86 'dependencies': [ 91 'dependencies': [
87 '../ui/compositor/compositor.gyp:compositor', 92 '../ui/compositor/compositor.gyp:compositor',
88 ], 93 ],
89 }], 94 }],
90 ['OS=="win" and target_arch=="ia32"', { 95 ['OS=="win" and target_arch=="ia32"', {
91 # Add a dependency to custom import library for user32 delay 96 # Add a dependency to custom import library for user32 delay
92 # imports only in x86 builds. 97 # imports only in x86 builds.
93 'dependencies': [ 98 'dependencies': [
94 'chrome_user32_delay_imports', 99 'chrome_user32_delay_imports',
(...skipping 252 matching lines...) Expand 10 before | Expand all | Expand 10 after
347 ], 352 ],
348 'defines': [ 353 'defines': [
349 'CHROME_MULTIPLE_DLL_CHILD', 354 'CHROME_MULTIPLE_DLL_CHILD',
350 ], 355 ],
351 'sources': [ 356 'sources': [
352 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc', 357 '<(SHARED_INTERMEDIATE_DIR)/chrome_version/chrome_dll_version.rc',
353 'app/chrome_main.cc', 358 'app/chrome_main.cc',
354 'app/chrome_main_delegate.cc', 359 'app/chrome_main_delegate.cc',
355 'app/chrome_main_delegate.h', 360 'app/chrome_main_delegate.h',
356 ], 361 ],
362 'conditions': [
363 ['OS=="win"', {
364 'dependencies': [
365 '<(DEPTH)/chrome_elf/chrome_elf.gyp:chrome_elf',
366 ],
367 }],
368 ],
357 }, # target chrome_child_dll 369 }, # target chrome_child_dll
358 ], 370 ],
359 }], 371 }],
360 ], 372 ],
361 } 373 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698