| 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 313 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 324 # Windows. | 324 # Windows. |
| 325 if (is_win) { | 325 if (is_win) { |
| 326 cflags = [ "/wd4324" ] # Structure was padded due to __declspec(align()), w
hich is | 326 cflags = [ "/wd4324" ] # Structure was padded due to __declspec(align()), w
hich is |
| 327 # uninteresting. | 327 # uninteresting. |
| 328 } else { | 328 } else { |
| 329 sources -= [ | 329 sources -= [ |
| 330 "gdi_util.cc", | 330 "gdi_util.cc", |
| 331 "gdi_util.h", | 331 "gdi_util.h", |
| 332 "icon_util.cc", | 332 "icon_util.cc", |
| 333 "icon_util.h", | 333 "icon_util.h", |
| 334 "sys_color_change_listener.cc", |
| 335 "sys_color_change_listener.h", |
| 334 ] | 336 ] |
| 335 } | 337 } |
| 336 | 338 |
| 337 # Linux. | 339 # Linux. |
| 338 if (is_linux) { | 340 if (is_linux) { |
| 339 configs += [ "//build/config/linux:fontconfig" ] | 341 configs += [ "//build/config/linux:fontconfig" ] |
| 340 } | 342 } |
| 341 | 343 |
| 342 # Chrome OS | 344 # Chrome OS |
| 343 if (is_chromeos) { | 345 if (is_chromeos) { |
| (...skipping 206 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 550 if (is_android) { | 552 if (is_android) { |
| 551 generate_jni("gfx_jni_headers") { | 553 generate_jni("gfx_jni_headers") { |
| 552 sources = [ | 554 sources = [ |
| 553 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 555 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 554 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 556 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 555 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 557 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 556 ] | 558 ] |
| 557 jni_package = "gfx" | 559 jni_package = "gfx" |
| 558 } | 560 } |
| 559 } | 561 } |
| OLD | NEW |