| 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 # TODO(brettw) this file is a work in progress, it is not currently hooked up | 5 # TODO(brettw) this file is a work in progress, it is not currently hooked up |
| 6 # to the build, but currently represents the state of content/common's deps. | 6 # to the build, but currently represents the state of content/common's deps. |
| 7 | 7 |
| 8 import("//build/config/features.gni") | 8 import("//build/config/features.gni") |
| 9 import("//build/config/ui.gni") | 9 import("//build/config/ui.gni") |
| 10 import("//content/common/common.gni") | 10 import("//content/common/common.gni") |
| (...skipping 130 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 141 } else { | 141 } else { |
| 142 sources -= [ | 142 sources -= [ |
| 143 "font_list_pango.cc", | 143 "font_list_pango.cc", |
| 144 ] | 144 ] |
| 145 } | 145 } |
| 146 | 146 |
| 147 if (use_x11) { | 147 if (use_x11) { |
| 148 include_dirs += [ "//third_party/khronos" ] | 148 include_dirs += [ "//third_party/khronos" ] |
| 149 configs += [ "//build/config/linux:xcomposite" ] | 149 configs += [ "//build/config/linux:xcomposite" ] |
| 150 | 150 |
| 151 if (cpu_arch != "arm" || !is_chromos) { | 151 if (cpu_arch != "arm" || !is_chromeos) { |
| 152 sources +=[ | 152 sources +=[ |
| 153 "gpu/x_util.cc", | 153 "gpu/x_util.cc", |
| 154 "gpu/x_util.h", | 154 "gpu/x_util.h", |
| 155 ] | 155 ] |
| 156 } | 156 } |
| 157 } | 157 } |
| 158 | 158 |
| 159 if (enable_plugins) { | 159 if (enable_plugins) { |
| 160 deps += [ | 160 deps += [ |
| 161 # TODO(GYP) enable once supported in the GN build. | 161 # TODO(GYP) enable once supported in the GN build. |
| (...skipping 98 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 260 } | 260 } |
| 261 if (is_android) { | 261 if (is_android) { |
| 262 sources -= [ | 262 sources -= [ |
| 263 "sandbox_linux/android/sandbox_bpf_base_policy_android.cc", | 263 "sandbox_linux/android/sandbox_bpf_base_policy_android.cc", |
| 264 "sandbox_linux/android/sandbox_bpf_base_policy_android.h", | 264 "sandbox_linux/android/sandbox_bpf_base_policy_android.h", |
| 265 ] | 265 ] |
| 266 } | 266 } |
| 267 } | 267 } |
| 268 } | 268 } |
| 269 | 269 |
| OLD | NEW |