| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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 'dependencies': [ | 6 'dependencies': [ |
| 7 '../base/base.gyp:base', | 7 '../base/base.gyp:base', |
| 8 '../build/temp_gyp/googleurl.gyp:googleurl', | 8 '../build/temp_gyp/googleurl.gyp:googleurl', |
| 9 '../gpu/gpu.gyp:gpu_ipc', | 9 '../gpu/gpu.gyp:gpu_ipc', |
| 10 '../ipc/ipc.gyp:ipc', | 10 '../ipc/ipc.gyp:ipc', |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 'common/p2p_sockets.h', | 194 'common/p2p_sockets.h', |
| 195 'common/page_zoom.cc', | 195 'common/page_zoom.cc', |
| 196 'common/pepper_file_messages.cc', | 196 'common/pepper_file_messages.cc', |
| 197 'common/pepper_file_messages.h', | 197 'common/pepper_file_messages.h', |
| 198 'common/pepper_messages.h', | 198 'common/pepper_messages.h', |
| 199 'common/pepper_plugin_registry.cc', | 199 'common/pepper_plugin_registry.cc', |
| 200 'common/pepper_plugin_registry.h', | 200 'common/pepper_plugin_registry.h', |
| 201 'common/plugin_carbon_interpose_constants_mac.cc', | 201 'common/plugin_carbon_interpose_constants_mac.cc', |
| 202 'common/plugin_carbon_interpose_constants_mac.h', | 202 'common/plugin_carbon_interpose_constants_mac.h', |
| 203 'common/plugin_messages.h', | 203 'common/plugin_messages.h', |
| 204 'common/process_watcher.h', | |
| 205 'common/process_watcher_mac.cc', | |
| 206 'common/process_watcher_posix.cc', | |
| 207 'common/process_watcher_win.cc', | |
| 208 'common/property_bag.cc', | 204 'common/property_bag.cc', |
| 209 'common/property_bag.h', | 205 'common/property_bag.h', |
| 210 'common/quota_messages.h', | 206 'common/quota_messages.h', |
| 211 'common/quota_dispatcher.cc', | 207 'common/quota_dispatcher.cc', |
| 212 'common/quota_dispatcher.h', | 208 'common/quota_dispatcher.h', |
| 213 'common/request_extra_data.cc', | 209 'common/request_extra_data.cc', |
| 214 'common/request_extra_data.h', | 210 'common/request_extra_data.h', |
| 215 'common/resource_dispatcher.cc', | 211 'common/resource_dispatcher.cc', |
| 216 'common/resource_dispatcher.h', | 212 'common/resource_dispatcher.h', |
| 217 'common/resource_messages.h', | 213 'common/resource_messages.h', |
| (...skipping 49 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 267 'public/common/webkit_param_traits.h', | 263 'public/common/webkit_param_traits.h', |
| 268 ], | 264 ], |
| 269 'conditions': [ | 265 'conditions': [ |
| 270 ['OS!="win"', { | 266 ['OS!="win"', { |
| 271 'sources!': [ | 267 'sources!': [ |
| 272 'common/sandbox_policy.cc', | 268 'common/sandbox_policy.cc', |
| 273 'common/sandbox_policy.h', | 269 'common/sandbox_policy.h', |
| 274 ], | 270 ], |
| 275 }], | 271 }], |
| 276 ['OS=="mac"', { | 272 ['OS=="mac"', { |
| 277 'sources!': [ | |
| 278 'common/process_watcher_posix.cc', | |
| 279 ], | |
| 280 'sources': [ | 273 'sources': [ |
| 281 'common/gpu/image_transport_surface.cc', | 274 'common/gpu/image_transport_surface.cc', |
| 282 'common/gpu/image_transport_surface_mac.cc', | 275 'common/gpu/image_transport_surface_mac.cc', |
| 283 ], | 276 ], |
| 284 'link_settings': { | 277 'link_settings': { |
| 285 'mac_bundle_resources': [ | 278 'mac_bundle_resources': [ |
| 286 'common/common.sb', | 279 'common/common.sb', |
| 287 ], | 280 ], |
| 288 }, | 281 }, |
| 289 }], | 282 }], |
| (...skipping 48 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 338 ], | 331 ], |
| 339 'link_settings': { | 332 'link_settings': { |
| 340 'libraries': [ | 333 'libraries': [ |
| 341 '-lEGL', | 334 '-lEGL', |
| 342 '-lGLESv2', | 335 '-lGLESv2', |
| 343 ], | 336 ], |
| 344 }, | 337 }, |
| 345 }], | 338 }], |
| 346 ], | 339 ], |
| 347 } | 340 } |
| OLD | NEW |