| 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 34 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 45 'conditions': [ | 45 'conditions': [ |
| 46 ['OS=="mac"', { | 46 ['OS=="mac"', { |
| 47 'link_settings': { | 47 'link_settings': { |
| 48 'libraries': [ | 48 'libraries': [ |
| 49 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 49 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| 50 ], | 50 ], |
| 51 }, | 51 }, |
| 52 }], | 52 }], |
| 53 ], | 53 ], |
| 54 'sources': [ | 54 'sources': [ |
| 55 'shared_impl/array_writer.cc', |
| 56 'shared_impl/array_writer.h', |
| 55 'shared_impl/callback_tracker.cc', | 57 'shared_impl/callback_tracker.cc', |
| 56 'shared_impl/callback_tracker.h', | 58 'shared_impl/callback_tracker.h', |
| 57 'shared_impl/file_type_conversion.cc', | 59 'shared_impl/file_type_conversion.cc', |
| 58 'shared_impl/file_type_conversion.h', | 60 'shared_impl/file_type_conversion.h', |
| 59 'shared_impl/function_group_base.cc', | 61 'shared_impl/function_group_base.cc', |
| 60 'shared_impl/function_group_base.h', | 62 'shared_impl/function_group_base.h', |
| 61 'shared_impl/host_resource.h', | 63 'shared_impl/host_resource.h', |
| 62 'shared_impl/id_assignment.cc', | 64 'shared_impl/id_assignment.cc', |
| 63 'shared_impl/id_assignment.h', | 65 'shared_impl/id_assignment.h', |
| 64 'shared_impl/platform_file.cc', | 66 'shared_impl/platform_file.cc', |
| (...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 247 'thunk/ppb_websocket_api.h', | 249 'thunk/ppb_websocket_api.h', |
| 248 'thunk/ppb_websocket_thunk.cc', | 250 'thunk/ppb_websocket_thunk.cc', |
| 249 'thunk/ppb_widget_api.h', | 251 'thunk/ppb_widget_api.h', |
| 250 'thunk/ppb_widget_thunk.cc', | 252 'thunk/ppb_widget_thunk.cc', |
| 251 'thunk/ppb_zoom_thunk.cc', | 253 'thunk/ppb_zoom_thunk.cc', |
| 252 'thunk/thunk.h', | 254 'thunk/thunk.h', |
| 253 ], | 255 ], |
| 254 }, | 256 }, |
| 255 ], | 257 ], |
| 256 } | 258 } |
| OLD | NEW |