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/ui.gni") | 5 import("//build/config/ui.gni") |
6 if (is_android) { | 6 if (is_android) { |
7 import("//build/config/android/config.gni") | 7 import("//build/config/android/config.gni") |
8 } | 8 } |
9 | 9 |
10 # Several targets want to include this header file, and some of them are | 10 # Several targets want to include this header file, and some of them are |
(...skipping 253 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
264 "codec/jpeg_codec.h", | 264 "codec/jpeg_codec.h", |
265 ] | 265 ] |
266 } else { | 266 } else { |
267 deps += [ "//third_party/libjpeg" ] | 267 deps += [ "//third_party/libjpeg" ] |
268 } | 268 } |
269 | 269 |
270 # Android. | 270 # Android. |
271 if (is_android) { | 271 if (is_android) { |
272 sources -= [ | 272 sources -= [ |
273 "animation/throb_animation.cc", | 273 "animation/throb_animation.cc", |
274 "canvas_skia.cc" | 274 "canvas_skia.cc", |
275 "display_observer.cc", | 275 "display_observer.cc", |
276 "selection_model.cc", | 276 "selection_model.cc", |
277 ] | 277 ] |
278 | 278 |
279 if (use_aura) { | 279 if (use_aura) { |
280 sources -= [ "screen_android.cc" ] | 280 sources -= [ "screen_android.cc" ] |
281 } else { | 281 } else { |
282 sources -= [ "path.cc" ] | 282 sources -= [ "path.cc" ] |
283 } | 283 } |
284 | 284 |
(...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
451 "x/x11_atom_cache.h", | 451 "x/x11_atom_cache.h", |
452 "x/x11_error_tracker.cc", | 452 "x/x11_error_tracker.cc", |
453 "x/x11_error_tracker.h", | 453 "x/x11_error_tracker.h", |
454 "x/x11_types.cc", | 454 "x/x11_types.cc", |
455 "x/x11_types.h", | 455 "x/x11_types.h", |
456 ] | 456 ] |
457 | 457 |
458 configs += [ "//build/config/linux:x11" ] | 458 configs += [ "//build/config/linux:x11" ] |
459 } | 459 } |
460 } | 460 } |
OLD | NEW |