| 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 import("//testing/test.gni") | 6 import("//testing/test.gni") |
| 7 | 7 |
| 8 if (is_android) { | 8 if (is_android) { |
| 9 import("//build/config/android/config.gni") | 9 import("//build/config/android/config.gni") |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 360 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 371 sources += [ | 371 sources += [ |
| 372 "chromeos/codec/jpeg_codec_robust_slow.cc", | 372 "chromeos/codec/jpeg_codec_robust_slow.cc", |
| 373 "chromeos/codec/jpeg_codec_robust_slow.h", | 373 "chromeos/codec/jpeg_codec_robust_slow.h", |
| 374 ] | 374 ] |
| 375 deps += [ "//third_party/libjpeg" ] | 375 deps += [ "//third_party/libjpeg" ] |
| 376 } | 376 } |
| 377 | 377 |
| 378 if (is_mac) { | 378 if (is_mac) { |
| 379 libs = [ | 379 libs = [ |
| 380 "AppKit.framework", | 380 "AppKit.framework", |
| 381 "ApplicationServices.framework", # Temporary hack around https://crbug.co
m/620127. Remove after https://crbug.com/622481 is fixed. | |
| 382 "CoreFoundation.framework", | 381 "CoreFoundation.framework", |
| 383 "CoreGraphics.framework", | 382 "CoreGraphics.framework", |
| 384 "CoreText.framework", | 383 "CoreText.framework", |
| 385 "IOSurface.framework", | 384 "IOSurface.framework", |
| 386 ] | 385 ] |
| 387 } | 386 } |
| 388 | 387 |
| 389 if (!use_aura) { | 388 if (!use_aura) { |
| 390 if (!toolkit_views) { | 389 if (!toolkit_views) { |
| 391 sources -= [ | 390 sources -= [ |
| (...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 879 if (is_android) { | 878 if (is_android) { |
| 880 generate_jni("gfx_jni_headers") { | 879 generate_jni("gfx_jni_headers") { |
| 881 sources = [ | 880 sources = [ |
| 882 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 881 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 883 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 882 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 884 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 883 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 885 ] | 884 ] |
| 886 jni_package = "gfx" | 885 jni_package = "gfx" |
| 887 } | 886 } |
| 888 } | 887 } |
| OLD | NEW |