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

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

Issue 7706011: Use precompiled headers for most large projects. (Closed) Base URL: ssh://joi@192.168.1.201/home/joi/c/chrome/src@master
Patch Set: New approach, explicitly use PCH for largest projects. 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
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 'includes': [
10 '../../build/win_precompile.gypi',
11 ],
9 'targets': [ 12 'targets': [
10 { 13 {
11 'target_name': 'default_plugin', 14 'target_name': 'default_plugin',
12 'type': 'static_library', 15 'type': 'static_library',
13 'dependencies': [ 16 'dependencies': [
14 ':default_plugin_resources', 17 ':default_plugin_resources',
15 '<(DEPTH)/base/base.gyp:base', 18 '<(DEPTH)/base/base.gyp:base',
16 '<(DEPTH)/net/net.gyp:net_resources', 19 '<(DEPTH)/net/net.gyp:net_resources',
17 '<(DEPTH)/third_party/icu/icu.gyp:icui18n', 20 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
18 '<(DEPTH)/third_party/icu/icu.gyp:icuuc', 21 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
19 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml', 22 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml',
20 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi', 23 '<(DEPTH)/third_party/npapi/npapi.gyp:npapi',
21 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_resources', 24 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_resources',
22 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_strings', 25 '<(DEPTH)/webkit/support/webkit_support.gyp:webkit_strings',
23 ], 26 ],
24 'include_dirs': [ 27 'include_dirs': [
25 '<(DEPTH)', 28 '<(DEPTH)',
26 '<(DEPTH)/third_party/wtl/include', 29 '<(DEPTH)/third_party/wtl/include',
27 ], 30 ],
28 'sources': [ 31 'sources': [
29 'plugin_impl_gtk.cc', 32 'plugin_impl_gtk.cc',
30 'plugin_impl_gtk.h', 33 'plugin_impl_gtk.h',
31 'plugin_impl_mac.h', 34 'plugin_impl_mac.h',
32 'plugin_impl_mac.mm', 35 'plugin_impl_mac.mm',
33 'plugin_impl_win.cc', 36 'plugin_impl_win.cc',
34 'plugin_impl_win.h', 37 'plugin_impl_win.h',
35 'plugin_installer_base.cc', 38 'plugin_installer_base.cc',
36 'plugin_installer_base.h', 39 'plugin_installer_base.h',
37 'plugin_main.cc', 40 'plugin_main.cc',
38 'plugin_main.h', 41 'plugin_main.h',
39 ], 42 ],
40 'conditions': [ 43 'conditions': [
41 ['OS=="win"', { 44 ['OS=="win"', {
42 'link_settings': { 45 'link_settings': {
43 'libraries': ['-lurlmon.lib'], 46 'libraries': ['-lurlmon.lib'],
44 }, 47 },
45 'sources': [ 48 'sources': [
46 'default_plugin_resources.h', 49 'default_plugin_resources.h',
(...skipping 26 matching lines...) Expand all
73 'variables': { 76 'variables': {
74 'grit_grd_file': 'default_plugin_resources.grd', 77 'grit_grd_file': 'default_plugin_resources.grd',
75 }, 78 },
76 'includes': [ '../../build/grit_action.gypi' ], 79 'includes': [ '../../build/grit_action.gypi' ],
77 }, 80 },
78 ], 81 ],
79 'includes': [ '../../build/grit_target.gypi' ], 82 'includes': [ '../../build/grit_target.gypi' ],
80 }, 83 },
81 ], 84 ],
82 } 85 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698