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

Side by Side Diff: webkit/glue/webkit_glue.gypi

Issue 12084104: Make webkit_glue build on Win64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 7 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 | « no previous file | no next file » | 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 { 5 {
6 'variables': { 6 'variables': {
7 'conditions': [ 7 'conditions': [
8 ['inside_chromium_build==0', { 8 ['inside_chromium_build==0', {
9 'webkit_src_dir': '../../../../..', 9 'webkit_src_dir': '../../../../..',
10 },{ 10 },{
(...skipping 445 matching lines...) Expand 10 before | Expand all | Expand 10 after
456 'webthemeengine_impl_win.cc', 456 'webthemeengine_impl_win.cc',
457 ], 457 ],
458 }, { # else: OS=="win" 458 }, { # else: OS=="win"
459 'sources/': [['exclude', '_posix\\.cc$']], 459 'sources/': [['exclude', '_posix\\.cc$']],
460 'include_dirs': [ 460 'include_dirs': [
461 '<(DEPTH)/third_party/wtl/include', 461 '<(DEPTH)/third_party/wtl/include',
462 ], 462 ],
463 'sources!': [ 463 'sources!': [
464 'plugins/plugin_stubs.cc', 464 'plugins/plugin_stubs.cc',
465 ], 465 ],
466 'msvs_disabled_warnings': [ 4800 ], 466 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
467 'msvs_disabled_warnings': [ 4800, 4267 ],
467 'conditions': [ 468 'conditions': [
468 ['inside_chromium_build==1 and component=="shared_library"', { 469 ['inside_chromium_build==1 and component=="shared_library"', {
469 'dependencies': [ 470 'dependencies': [
470 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', 471 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
471 ], 472 ],
472 'export_dependent_settings': [ 473 'export_dependent_settings': [
473 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', 474 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit',
474 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8', 475 '<(DEPTH)/v8/tools/gyp/v8.gyp:v8',
475 ], 476 ],
476 }], 477 }],
(...skipping 24 matching lines...) Expand all
501 }, 502 },
502 'includes': [ '../../build/grit_action.gypi' ], 503 'includes': [ '../../build/grit_action.gypi' ],
503 }, 504 },
504 ], 505 ],
505 'includes': [ '../../build/grit_target.gypi' ], 506 'includes': [ '../../build/grit_target.gypi' ],
506 }, 507 },
507 ], 508 ],
508 }], 509 }],
509 ], 510 ],
510 } 511 }
OLDNEW
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698