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. |
381 "CoreFoundation.framework", | 382 "CoreFoundation.framework", |
382 "CoreGraphics.framework", | 383 "CoreGraphics.framework", |
383 "CoreText.framework", | 384 "CoreText.framework", |
384 "IOSurface.framework", | 385 "IOSurface.framework", |
385 ] | 386 ] |
386 } | 387 } |
387 | 388 |
388 if (!use_aura) { | 389 if (!use_aura) { |
389 if (!toolkit_views) { | 390 if (!toolkit_views) { |
390 sources -= [ | 391 sources -= [ |
(...skipping 487 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
878 if (is_android) { | 879 if (is_android) { |
879 generate_jni("gfx_jni_headers") { | 880 generate_jni("gfx_jni_headers") { |
880 sources = [ | 881 sources = [ |
881 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 882 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
882 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 883 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
883 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 884 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
884 ] | 885 ] |
885 jni_package = "gfx" | 886 jni_package = "gfx" |
886 } | 887 } |
887 } | 888 } |
OLD | NEW |