| OLD | NEW |
| 1 # Copyright 2013 The Chromium Authors. All rights reserved. | 1 # Copyright 2013 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': { |
| 7 'enable_wexit_time_destructors': 1, |
| 8 'chromium_code': 1 |
| 9 }, |
| 6 'targets': [ | 10 'targets': [ |
| 7 { | 11 { |
| 8 'target_name': 'webkit_common', | 12 'target_name': 'webkit_common', |
| 9 'type': '<(component)', | 13 'type': '<(component)', |
| 10 'variables': { 'enable_wexit_time_destructors': 1, }, | |
| 11 'defines': [ | 14 'defines': [ |
| 12 'WEBKIT_COMMON_IMPLEMENTATION', | 15 'WEBKIT_COMMON_IMPLEMENTATION', |
| 13 ], | 16 ], |
| 14 'dependencies': [ | 17 'dependencies': [ |
| 15 '<(DEPTH)/base/base.gyp:base_i18n', | 18 '<(DEPTH)/base/base.gyp:base_i18n', |
| 16 '<(DEPTH)/base/base.gyp:base', | 19 '<(DEPTH)/base/base.gyp:base', |
| 17 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', | 20 '<(DEPTH)/base/third_party/dynamic_annotations/dynamic_annotations.gyp:d
ynamic_annotations', |
| 18 '<(DEPTH)/net/net.gyp:net', | 21 '<(DEPTH)/net/net.gyp:net', |
| 19 '<(DEPTH)/skia/skia.gyp:skia', | 22 '<(DEPTH)/skia/skia.gyp:skia', |
| 20 '<(DEPTH)/ui/ui.gyp:ui', | 23 '<(DEPTH)/ui/ui.gyp:ui', |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 79 'sources/': [['exclude', '_win\\.cc$']], | 82 'sources/': [['exclude', '_win\\.cc$']], |
| 80 }, { # else: OS=="win" | 83 }, { # else: OS=="win" |
| 81 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 84 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 82 'msvs_disabled_warnings': [ 4800, 4267 ], | 85 'msvs_disabled_warnings': [ 4800, 4267 ], |
| 83 'sources/': [['exclude', '_posix\\.cc$']], | 86 'sources/': [['exclude', '_posix\\.cc$']], |
| 84 }], | 87 }], |
| 85 ], | 88 ], |
| 86 }, | 89 }, |
| 87 ], | 90 ], |
| 88 } | 91 } |
| OLD | NEW |