Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(23)

Side by Side Diff: ui/gfx/BUILD.gn

Issue 569623002: Switch ChromeOS Chromium login to use IJG libjpeg (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Update BUILD.gn and add GYP libjpeg variables Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « build/common.gypi ('k') | ui/gfx/codec/jpeg_codec.cc » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 301 matching lines...) Expand 10 before | Expand all | Expand 10 after
312 "icon_util.cc", 312 "icon_util.cc",
313 "icon_util.h", 313 "icon_util.h",
314 ] 314 ]
315 } 315 }
316 316
317 # Linux. 317 # Linux.
318 if (is_linux) { 318 if (is_linux) {
319 configs += [ "//build/config/linux:fontconfig" ] 319 configs += [ "//build/config/linux:fontconfig" ]
320 } 320 }
321 321
322 # ChromeOS
Jorge Lucangeli Obes 2014/09/18 20:54:39 Nit: Chrome OS with a space.
323 if (is_chromeos) {
324 # Robust JPEG decoding for the login screen.
325 deps += [ "//third_party:jpeg" ]
326 }
327
322 # Ozone stuff. 328 # Ozone stuff.
323 if (use_ozone) { 329 if (use_ozone) {
324 sources += [ 330 sources += [
325 "platform_font_ozone.cc", 331 "platform_font_ozone.cc",
326 ] 332 ]
327 } 333 }
328 334
329 if (!use_aura) { 335 if (!use_aura) {
330 sources -= [ 336 sources -= [
331 "nine_image_painter.cc", 337 "nine_image_painter.cc",
(...skipping 107 matching lines...) Expand 10 before | Expand all | Expand 10 after
439 if (is_android) { 445 if (is_android) {
440 generate_jni("gfx_jni_headers") { 446 generate_jni("gfx_jni_headers") {
441 sources = [ 447 sources = [
442 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", 448 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java",
443 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", 449 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java",
444 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", 450 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java",
445 ] 451 ]
446 jni_package = "gfx" 452 jni_package = "gfx"
447 } 453 }
448 } 454 }
OLDNEW
« no previous file with comments | « build/common.gypi ('k') | ui/gfx/codec/jpeg_codec.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698