| 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 23 matching lines...) Expand all Loading... |
| 34 ], | 34 ], |
| 35 'defines': [ | 35 'defines': [ |
| 36 'PPAPI_SHARED_IMPLEMENTATION', | 36 'PPAPI_SHARED_IMPLEMENTATION', |
| 37 'PPAPI_THUNK_IMPLEMENTATION', | 37 'PPAPI_THUNK_IMPLEMENTATION', |
| 38 ], | 38 ], |
| 39 'include_dirs': [ | 39 'include_dirs': [ |
| 40 '..', | 40 '..', |
| 41 ], | 41 ], |
| 42 'export_dependent_settings': [ | 42 'export_dependent_settings': [ |
| 43 '../base/base.gyp:base', | 43 '../base/base.gyp:base', |
| 44 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', | 44 '<(webkit_src_dir)/Source/WebKit/chromium/WebKit.gyp:webkit', |
| 45 ], | 45 ], |
| 46 'conditions': [ | 46 'conditions': [ |
| 47 ['OS=="mac"', { | 47 ['OS=="mac"', { |
| 48 'link_settings': { | 48 'link_settings': { |
| 49 'libraries': [ | 49 'libraries': [ |
| 50 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', | 50 '$(SDKROOT)/System/Library/Frameworks/QuartzCore.framework', |
| 51 ], | 51 ], |
| 52 }, | 52 }, |
| 53 }], | 53 }], |
| 54 ], | 54 ], |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 103 'shared_impl/ppb_url_util_shared.cc', | 103 'shared_impl/ppb_url_util_shared.cc', |
| 104 'shared_impl/ppb_url_util_shared.h', | 104 'shared_impl/ppb_url_util_shared.h', |
| 105 'shared_impl/ppb_var_shared.cc', | 105 'shared_impl/ppb_var_shared.cc', |
| 106 'shared_impl/ppb_var_shared.h', | 106 'shared_impl/ppb_var_shared.h', |
| 107 'shared_impl/ppb_video_decoder_shared.cc', | 107 'shared_impl/ppb_video_decoder_shared.cc', |
| 108 'shared_impl/ppb_video_decoder_shared.h', | 108 'shared_impl/ppb_video_decoder_shared.h', |
| 109 'shared_impl/ppb_video_capture_shared.cc', | 109 'shared_impl/ppb_video_capture_shared.cc', |
| 110 'shared_impl/ppb_video_capture_shared.h', | 110 'shared_impl/ppb_video_capture_shared.h', |
| 111 'shared_impl/ppb_view_shared.cc', | 111 'shared_impl/ppb_view_shared.cc', |
| 112 'shared_impl/ppb_view_shared.h', | 112 'shared_impl/ppb_view_shared.h', |
| 113 'shared_impl/ppp_flash_browser_operations_shared.h', |
| 113 'shared_impl/ppp_instance_combined.cc', | 114 'shared_impl/ppp_instance_combined.cc', |
| 114 'shared_impl/ppp_instance_combined.h', | 115 'shared_impl/ppp_instance_combined.h', |
| 115 'shared_impl/proxy_lock.cc', | 116 'shared_impl/proxy_lock.cc', |
| 116 'shared_impl/proxy_lock.h', | 117 'shared_impl/proxy_lock.h', |
| 117 'shared_impl/resource.cc', | 118 'shared_impl/resource.cc', |
| 118 'shared_impl/resource.h', | 119 'shared_impl/resource.h', |
| 119 'shared_impl/resource_tracker.cc', | 120 'shared_impl/resource_tracker.cc', |
| 120 'shared_impl/resource_tracker.h', | 121 'shared_impl/resource_tracker.h', |
| 121 'shared_impl/scoped_pp_resource.cc', | 122 'shared_impl/scoped_pp_resource.cc', |
| 122 'shared_impl/scoped_pp_resource.h', | 123 'shared_impl/scoped_pp_resource.h', |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 253 'thunk/ppb_widget_api.h', | 254 'thunk/ppb_widget_api.h', |
| 254 'thunk/ppb_widget_thunk.cc', | 255 'thunk/ppb_widget_thunk.cc', |
| 255 'thunk/ppb_x509_certificate_private_api.h', | 256 'thunk/ppb_x509_certificate_private_api.h', |
| 256 'thunk/ppb_x509_certificate_private_thunk.cc', | 257 'thunk/ppb_x509_certificate_private_thunk.cc', |
| 257 'thunk/ppb_zoom_thunk.cc', | 258 'thunk/ppb_zoom_thunk.cc', |
| 258 'thunk/thunk.h', | 259 'thunk/thunk.h', |
| 259 ], | 260 ], |
| 260 }, | 261 }, |
| 261 ], | 262 ], |
| 262 } | 263 } |
| OLD | NEW |