| 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': { | 6 'variables': { |
| 7 'enable_wexit_time_destructors': 1, | 7 'enable_wexit_time_destructors': 1, |
| 8 'chromium_code': 1 | 8 'chromium_code': 1 |
| 9 }, | 9 }, |
| 10 'targets': [ | 10 'targets': [ |
| (...skipping 39 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 50 'data_element.h', | 50 'data_element.h', |
| 51 'resource_devtools_info.cc', | 51 'resource_devtools_info.cc', |
| 52 'resource_devtools_info.h', | 52 'resource_devtools_info.h', |
| 53 'resource_request_body.cc', | 53 'resource_request_body.cc', |
| 54 'resource_request_body.h', | 54 'resource_request_body.h', |
| 55 'resource_response_info.cc', | 55 'resource_response_info.cc', |
| 56 'resource_response_info.h', | 56 'resource_response_info.h', |
| 57 'resource_type.cc', | 57 'resource_type.cc', |
| 58 'resource_type.h', | 58 'resource_type.h', |
| 59 'webkit_common_export.h', | 59 'webkit_common_export.h', |
| 60 'webpreferences.cc', | |
| 61 'webpreferences.h', | |
| 62 ], | 60 ], |
| 63 | 61 |
| 64 'conditions': [ | 62 'conditions': [ |
| 65 ['toolkit_uses_gtk == 1', { | 63 ['toolkit_uses_gtk == 1', { |
| 66 'dependencies': [ | 64 'dependencies': [ |
| 67 '<(DEPTH)/build/linux/system.gyp:gtk', | 65 '<(DEPTH)/build/linux/system.gyp:gtk', |
| 68 ], | 66 ], |
| 69 'sources/': [['exclude', '_x11\\.cc$']], | 67 'sources/': [['exclude', '_x11\\.cc$']], |
| 70 }], | 68 }], |
| 71 ['use_aura==1', { | 69 ['use_aura==1', { |
| (...skipping 20 matching lines...) Expand all Loading... |
| 92 }, | 90 }, |
| 93 }], | 91 }], |
| 94 ['OS=="win"', { | 92 ['OS=="win"', { |
| 95 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 93 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 96 'msvs_disabled_warnings': [ 4800, 4267 ], | 94 'msvs_disabled_warnings': [ 4800, 4267 ], |
| 97 }], | 95 }], |
| 98 ], | 96 ], |
| 99 }, | 97 }, |
| 100 ], | 98 ], |
| 101 } | 99 } |
| OLD | NEW |