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

Side by Side Diff: chrome/chrome_dll.gypi

Issue 9288053: Remove old (pre-webkit) compositor (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: fix test Created 8 years, 10 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/browser/translate/translate_manager_browsertest.cc ('k') | chrome/chrome_exe.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 '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': 'shared_library', 10 'type': 'shared_library',
11 'variables': { 11 'variables': {
12 'enable_wexit_time_destructors': 1, 12 'enable_wexit_time_destructors': 1,
13 }, 13 },
14 'dependencies': [ 14 'dependencies': [
15 '<@(chromium_dependencies)', 15 '<@(chromium_dependencies)',
16 'app/policy/cloud_policy_codegen.gyp:policy', 16 'app/policy/cloud_policy_codegen.gyp:policy',
17 ], 17 ],
18 'conditions': [ 18 'conditions': [
19 ['use_webkit_compositor==1 and views_compositor==1', { 19 ['views_compositor==1', {
20 'dependencies': [ 20 'dependencies': [
21 '../ui/gfx/compositor/compositor.gyp:compositor', 21 '../ui/gfx/compositor/compositor.gyp:compositor',
22 ], 22 ],
23 }, { # use_webkit_compositor!=1
24 'dependencies': [
25 '../ui/gfx/compositor/compositor.gyp:test_compositor',
26 ],
27 }], 23 }],
28 ['OS=="win"', { 24 ['OS=="win"', {
29 'product_name': 'chrome', 25 'product_name': 'chrome',
30 'dependencies': [ 26 'dependencies': [
31 # On Windows, link the dependencies (libraries) that make 27 # On Windows, link the dependencies (libraries) that make
32 # up actual Chromium functionality into this .dll. 28 # up actual Chromium functionality into this .dll.
33 'chrome_resources.gyp:chrome_resources', 29 'chrome_resources.gyp:chrome_resources',
34 'chrome_version_resources', 30 'chrome_version_resources',
35 'installer_util_strings', 31 'installer_util_strings',
36 '../content/content.gyp:content_worker', 32 '../content/content.gyp:content_worker',
(...skipping 473 matching lines...) Expand 10 before | Expand all | Expand 10 after
510 ], 506 ],
511 }], 507 }],
512 ], # conditions 508 ], # conditions
513 }], # OS=="mac" 509 }], # OS=="mac"
514 ], # conditions 510 ], # conditions
515 }, # target chrome_dll 511 }, # target chrome_dll
516 ], # targets 512 ], # targets
517 }], # OS=="mac" or OS=="win" 513 }], # OS=="mac" or OS=="win"
518 ], 514 ],
519 } 515 }
OLDNEW
« no previous file with comments | « chrome/browser/translate/translate_manager_browsertest.cc ('k') | chrome/chrome_exe.gypi » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698