| OLD | NEW |
| 1 # Copyright 2014 The Chromium Authors. All rights reserved. | 1 # Copyright 2014 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 import("//build/config/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//content/common/common.gni") | 7 import("//content/common/common.gni") |
| 8 import("//media/media_options.gni") | 8 import("//media/media_options.gni") |
| 9 import("//mojo/public/tools/bindings/mojom.gni") | 9 import("//mojo/public/tools/bindings/mojom.gni") |
| 10 if (is_mac) { | 10 if (is_mac) { |
| (...skipping 217 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 228 sources += [ | 228 sources += [ |
| 229 "gpu/gpu_memory_buffer_factory_io_surface.cc", | 229 "gpu/gpu_memory_buffer_factory_io_surface.cc", |
| 230 "gpu/gpu_memory_buffer_factory_io_surface.h", | 230 "gpu/gpu_memory_buffer_factory_io_surface.h", |
| 231 "gpu/media/vt_mac.h", | 231 "gpu/media/vt_mac.h", |
| 232 "gpu/media/vt_video_decode_accelerator_mac.cc", | 232 "gpu/media/vt_video_decode_accelerator_mac.cc", |
| 233 "gpu/media/vt_video_decode_accelerator_mac.h", | 233 "gpu/media/vt_video_decode_accelerator_mac.h", |
| 234 "gpu/media/vt_video_encode_accelerator_mac.cc", | 234 "gpu/media/vt_video_encode_accelerator_mac.cc", |
| 235 "gpu/media/vt_video_encode_accelerator_mac.h", | 235 "gpu/media/vt_video_encode_accelerator_mac.h", |
| 236 ] + get_target_outputs(":libvt_generate_stubs") | 236 ] + get_target_outputs(":libvt_generate_stubs") |
| 237 | 237 |
| 238 sources -= [ "plugin_list_posix.cc" ] | |
| 239 | |
| 240 deps += [ | 238 deps += [ |
| 241 ":libvt_generate_stubs", | 239 ":libvt_generate_stubs", |
| 242 "//content:resources", | 240 "//content:resources", |
| 243 "//content/app/resources", | 241 "//content/app/resources", |
| 244 "//third_party/WebKit/public:image_resources", | 242 "//third_party/WebKit/public:image_resources", |
| 245 "//third_party/WebKit/public:resources", | 243 "//third_party/WebKit/public:resources", |
| 246 "//ui/accelerated_widget_mac", | 244 "//ui/accelerated_widget_mac", |
| 247 ] | 245 ] |
| 248 lib_dirs = [ "$mac_sdk_path/usr/lib" ] | 246 lib_dirs = [ "$mac_sdk_path/usr/lib" ] |
| 249 libs += [ | 247 libs += [ |
| (...skipping 75 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 sources -= [ | 323 sources -= [ |
| 326 "pepper_file_util.cc", | 324 "pepper_file_util.cc", |
| 327 "pepper_file_util.h", | 325 "pepper_file_util.h", |
| 328 "pepper_messages.h", | 326 "pepper_messages.h", |
| 329 "pepper_plugin_list.cc", | 327 "pepper_plugin_list.cc", |
| 330 "pepper_plugin_list.h", | 328 "pepper_plugin_list.h", |
| 331 "pepper_renderer_instance_data.cc", | 329 "pepper_renderer_instance_data.cc", |
| 332 "pepper_renderer_instance_data.h", | 330 "pepper_renderer_instance_data.h", |
| 333 "plugin_list.cc", | 331 "plugin_list.cc", |
| 334 "plugin_list.h", | 332 "plugin_list.h", |
| 335 "plugin_list_posix.cc", | |
| 336 "sandbox_util.cc", | 333 "sandbox_util.cc", |
| 337 ] | 334 ] |
| 338 } | 335 } |
| 339 | 336 |
| 340 if (is_android) { | 337 if (is_android) { |
| 341 sources += [ | 338 sources += [ |
| 342 "gpu/media/android_copying_backing_strategy.cc", | 339 "gpu/media/android_copying_backing_strategy.cc", |
| 343 "gpu/media/android_copying_backing_strategy.h", | 340 "gpu/media/android_copying_backing_strategy.h", |
| 344 "gpu/media/android_deferred_rendering_backing_strategy.cc", | 341 "gpu/media/android_deferred_rendering_backing_strategy.cc", |
| 345 "gpu/media/android_deferred_rendering_backing_strategy.h", | 342 "gpu/media/android_deferred_rendering_backing_strategy.h", |
| (...skipping 210 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 556 "//components/leveldb/public/interfaces", | 553 "//components/leveldb/public/interfaces", |
| 557 "//components/mus/public/interfaces", | 554 "//components/mus/public/interfaces", |
| 558 "//content/public/common:mojo_bindings", | 555 "//content/public/common:mojo_bindings", |
| 559 "//mojo/shell/public/interfaces", | 556 "//mojo/shell/public/interfaces", |
| 560 "//skia/public/interfaces", | 557 "//skia/public/interfaces", |
| 561 "//third_party/WebKit/public:mojo_bindings", | 558 "//third_party/WebKit/public:mojo_bindings", |
| 562 "//ui/mojo/geometry:interfaces", | 559 "//ui/mojo/geometry:interfaces", |
| 563 "//url/mojo:url_mojom_origin", | 560 "//url/mojo:url_mojom_origin", |
| 564 ] | 561 ] |
| 565 } | 562 } |
| OLD | NEW |