| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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 } |
| OLD | NEW |