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

Side by Side Diff: chrome/default_plugin/default_plugin.gyp

Issue 7841012: Get chrome to link with USE_AURA (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 9 years, 3 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) 2011 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2011 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, 7 'chromium_code': 1,
8 }, 8 },
9 'targets': [ 9 'targets': [
10 { 10 {
(...skipping 20 matching lines...) Expand all
31 'plugin_impl_mac.h', 31 'plugin_impl_mac.h',
32 'plugin_impl_mac.mm', 32 'plugin_impl_mac.mm',
33 'plugin_impl_win.cc', 33 'plugin_impl_win.cc',
34 'plugin_impl_win.h', 34 'plugin_impl_win.h',
35 'plugin_installer_base.cc', 35 'plugin_installer_base.cc',
36 'plugin_installer_base.h', 36 'plugin_installer_base.h',
37 'plugin_main.cc', 37 'plugin_main.cc',
38 'plugin_main.h', 38 'plugin_main.h',
39 ], 39 ],
40 'conditions': [ 40 'conditions': [
41 ['use_aura==1', {
42 'sources/': [
43 ['exclude', '^plugin_impl_win.cc'],
44 ['exclude', '^plugin_impl_win.h'],
45 ],
46 }],
47 ['OS=="win"', { 41 ['OS=="win"', {
48 'link_settings': { 42 'link_settings': {
49 'libraries': ['-lurlmon.lib'], 43 'libraries': ['-lurlmon.lib'],
50 }, 44 },
51 'sources': [ 45 'sources': [
52 'default_plugin_resources.h', 46 'default_plugin_resources.h',
53 'install_dialog.cc', 47 'install_dialog.cc',
54 'install_dialog.h', 48 'install_dialog.h',
55 'plugin_database_handler.cc', 49 'plugin_database_handler.cc',
56 'plugin_database_handler.h', 50 'plugin_database_handler.h',
(...skipping 22 matching lines...) Expand all
79 'variables': { 73 'variables': {
80 'grit_grd_file': 'default_plugin_resources.grd', 74 'grit_grd_file': 'default_plugin_resources.grd',
81 }, 75 },
82 'includes': [ '../../build/grit_action.gypi' ], 76 'includes': [ '../../build/grit_action.gypi' ],
83 }, 77 },
84 ], 78 ],
85 'includes': [ '../../build/grit_target.gypi' ], 79 'includes': [ '../../build/grit_target.gypi' ],
86 }, 80 },
87 ], 81 ],
88 } 82 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698