| 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 | 228 |
| 229 if (is_mac) { | 229 if (is_mac) { |
| 230 sources += [ | 230 sources += [ |
| 231 "gpu/client/gpu_memory_buffer_impl_io_surface.cc", | 231 "gpu/client/gpu_memory_buffer_impl_io_surface.cc", |
| 232 "gpu/client/gpu_memory_buffer_impl_io_surface.h", | 232 "gpu/client/gpu_memory_buffer_impl_io_surface.h", |
| 233 "gpu/gpu_memory_buffer_factory_io_surface.cc", | 233 "gpu/gpu_memory_buffer_factory_io_surface.cc", |
| 234 "gpu/gpu_memory_buffer_factory_io_surface.h", | 234 "gpu/gpu_memory_buffer_factory_io_surface.h", |
| 235 "gpu/media/vt_mac.h", | 235 "gpu/media/vt_mac.h", |
| 236 "gpu/media/vt_video_decode_accelerator_mac.cc", | 236 "gpu/media/vt_video_decode_accelerator_mac.cc", |
| 237 "gpu/media/vt_video_decode_accelerator_mac.h", | 237 "gpu/media/vt_video_decode_accelerator_mac.h", |
| 238 "gpu/media/vt_video_encode_accelerator_mac.cc", |
| 239 "gpu/media/vt_video_encode_accelerator_mac.h", |
| 238 ] + get_target_outputs(":libvt_generate_stubs") | 240 ] + get_target_outputs(":libvt_generate_stubs") |
| 239 | 241 |
| 240 sources -= [ "plugin_list_posix.cc" ] | 242 sources -= [ "plugin_list_posix.cc" ] |
| 241 | 243 |
| 242 deps += [ | 244 deps += [ |
| 243 ":libvt_generate_stubs", | 245 ":libvt_generate_stubs", |
| 244 "//content:resources", | 246 "//content:resources", |
| 245 "//content/app/resources", | 247 "//content/app/resources", |
| 246 "//third_party/WebKit/public:image_resources", | 248 "//third_party/WebKit/public:image_resources", |
| 247 "//third_party/WebKit/public:resources", | 249 "//third_party/WebKit/public:resources", |
| (...skipping 301 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 549 import_dirs = [ "//mojo/services" ] | 551 import_dirs = [ "//mojo/services" ] |
| 550 | 552 |
| 551 public_deps = [ | 553 public_deps = [ |
| 552 "//components/mus/public/interfaces", | 554 "//components/mus/public/interfaces", |
| 553 "//content/public/common:mojo_bindings", | 555 "//content/public/common:mojo_bindings", |
| 554 "//mojo/shell/public/interfaces", | 556 "//mojo/shell/public/interfaces", |
| 555 "//skia/public/interfaces", | 557 "//skia/public/interfaces", |
| 556 "//ui/mojo/geometry:interfaces", | 558 "//ui/mojo/geometry:interfaces", |
| 557 ] | 559 ] |
| 558 } | 560 } |
| OLD | NEW |