| 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("//media/media_options.gni") |
| 6 import("//ppapi/features/features.gni") | 7 import("//ppapi/features/features.gni") |
| 7 | 8 |
| 8 # See //content/BUILD.gn for how this works. | 9 # See //content/BUILD.gn for how this works. |
| 9 group("renderer") { | 10 group("renderer") { |
| 10 if (is_component_build) { | 11 if (is_component_build) { |
| 11 public_deps = [ | 12 public_deps = [ |
| 12 "//content", | 13 "//content", |
| 13 ] | 14 ] |
| 14 } else { | 15 } else { |
| 15 public_deps = [ | 16 public_deps = [ |
| (...skipping 94 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 110 deps += [ | 111 deps += [ |
| 111 "//content/public/common:feature_h264_with_openh264_ffmpeg", | 112 "//content/public/common:feature_h264_with_openh264_ffmpeg", |
| 112 "//content/public/common:features", | 113 "//content/public/common:features", |
| 113 ] | 114 ] |
| 114 } | 115 } |
| 115 | 116 |
| 116 if (enable_plugins) { | 117 if (enable_plugins) { |
| 117 sources += [ "plugin_instance_throttler.h" ] | 118 sources += [ "plugin_instance_throttler.h" ] |
| 118 } | 119 } |
| 119 } | 120 } |
| OLD | NEW |