| 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 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/config.gni") | 8 import("//build/config/android/config.gni") |
| 9 import("//build/config/android/rules.gni") | 9 import("//build/config/android/rules.gni") |
| 10 } | 10 } |
| (...skipping 55 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 66 "canvas_skia.cc", | 66 "canvas_skia.cc", |
| 67 "canvas_skia_paint.h", | 67 "canvas_skia_paint.h", |
| 68 "codec/jpeg_codec.cc", | 68 "codec/jpeg_codec.cc", |
| 69 "codec/jpeg_codec.h", | 69 "codec/jpeg_codec.h", |
| 70 "codec/png_codec.cc", | 70 "codec/png_codec.cc", |
| 71 "codec/png_codec.h", | 71 "codec/png_codec.h", |
| 72 "color_analysis.cc", | 72 "color_analysis.cc", |
| 73 "color_analysis.h", | 73 "color_analysis.h", |
| 74 "color_profile.cc", | 74 "color_profile.cc", |
| 75 "color_profile.h", | 75 "color_profile.h", |
| 76 "color_profile_mac.cc", | 76 "color_profile_mac.mm", |
| 77 "color_profile_win.cc", | 77 "color_profile_win.cc", |
| 78 "color_utils.cc", | 78 "color_utils.cc", |
| 79 "color_utils.h", | 79 "color_utils.h", |
| 80 "display.cc", | 80 "display.cc", |
| 81 "display.h", | 81 "display.h", |
| 82 "display_observer.cc", | 82 "display_observer.cc", |
| 83 "display_observer.h", | 83 "display_observer.h", |
| 84 "favicon_size.cc", | 84 "favicon_size.cc", |
| 85 "favicon_size.h", | 85 "favicon_size.h", |
| 86 "font.cc", | 86 "font.cc", |
| (...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 440 ] | 440 ] |
| 441 | 441 |
| 442 configs += [ "//build/config/linux:x11" ] | 442 configs += [ "//build/config/linux:x11" ] |
| 443 | 443 |
| 444 deps = [ | 444 deps = [ |
| 445 ":gfx_export", | 445 ":gfx_export", |
| 446 "//base" | 446 "//base" |
| 447 ] | 447 ] |
| 448 } | 448 } |
| 449 } | 449 } |
| OLD | NEW |