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

Side by Side Diff: webkit/activex_shim/activex_shim.gyp

Issue 62127: Basic underpinnings of the gyp equivalent of the Linux SHARED=1 build:... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: Created 11 years, 8 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 | « third_party/zlib/zlib.gyp ('k') | webkit/default_plugin/default_plugin.gyp » ('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) 2009 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2009 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': [ 9 'includes': [
10 '../../build/common.gypi', 10 '../../build/common.gypi',
11 ], 11 ],
12 'conditions': [ 12 'conditions': [
13 [ 'OS=="win"', { 13 [ 'OS=="win"', {
14 'targets': [ 14 'targets': [
15 { 15 {
16 'target_name': 'activex_shim', 16 'target_name': 'activex_shim',
17 'type': 'static_library', 17 'type': '<(library)',
18 'msvs_guid': 'F4F4BCAA-EA59-445C-A119-3E6C29647A51', 18 'msvs_guid': 'F4F4BCAA-EA59-445C-A119-3E6C29647A51',
19 'dependencies': [ 19 'dependencies': [
20 '../../base/base.gyp:base', 20 '../../base/base.gyp:base',
21 '../../third_party/npapi/npapi.gyp:npapi', 21 '../../third_party/npapi/npapi.gyp:npapi',
22 '../../build/temp_gyp/googleurl.gyp:googleurl', 22 '../../build/temp_gyp/googleurl.gyp:googleurl',
23 ], 23 ],
24 'sources': [ 24 'sources': [
25 'activex_plugin.cc', 25 'activex_plugin.cc',
26 'activex_plugin.h', 26 'activex_plugin.h',
27 'activex_shared.cc', 27 'activex_shared.cc',
(...skipping 23 matching lines...) Expand all
51 'link_settings': { 51 'link_settings': {
52 'libraries': [ 52 'libraries': [
53 '-lurlmon.lib', 53 '-lurlmon.lib',
54 ], 54 ],
55 }, 55 },
56 }, 56 },
57 ], 57 ],
58 }], 58 }],
59 ], 59 ],
60 } 60 }
OLDNEW
« no previous file with comments | « third_party/zlib/zlib.gyp ('k') | webkit/default_plugin/default_plugin.gyp » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698