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

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

Issue 1219533009: Make SysColorChangeListener Windows-only instead of having an empty shell. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@net_private_fields
Patch Set: forgot one Created 5 years, 5 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
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 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 176 matching lines...) Expand 10 before | Expand all | Expand 10 after
187 "sequential_id_generator.cc", 187 "sequential_id_generator.cc",
188 "sequential_id_generator.h", 188 "sequential_id_generator.h",
189 "shadow_value.cc", 189 "shadow_value.cc",
190 "shadow_value.h", 190 "shadow_value.h",
191 "skbitmap_operations.cc", 191 "skbitmap_operations.cc",
192 "skbitmap_operations.h", 192 "skbitmap_operations.h",
193 "skia_util.cc", 193 "skia_util.cc",
194 "skia_util.h", 194 "skia_util.h",
195 "switches.cc", 195 "switches.cc",
196 "switches.h", 196 "switches.h",
197 "sys_color_change_listener.cc",
198 "sys_color_change_listener.h",
199 "text_constants.h", 197 "text_constants.h",
200 "text_elider.cc", 198 "text_elider.cc",
201 "text_elider.h", 199 "text_elider.h",
202 "text_utils.cc", 200 "text_utils.cc",
203 "text_utils.h", 201 "text_utils.h",
204 "text_utils_android.cc", 202 "text_utils_android.cc",
205 "text_utils_ios.mm", 203 "text_utils_ios.mm",
206 "transform.cc", 204 "transform.cc",
207 "transform.h", 205 "transform.h",
208 "transform_util.cc", 206 "transform_util.cc",
(...skipping 315 matching lines...) Expand 10 before | Expand all | Expand 10 after
524 sources += [ "chromeos/codec/jpeg_codec_robust_slow_unittest.cc" ] 522 sources += [ "chromeos/codec/jpeg_codec_robust_slow_unittest.cc" ]
525 } 523 }
526 524
527 if (is_win) { 525 if (is_win) {
528 sources += [ 526 sources += [
529 "font_fallback_win_unittest.cc", 527 "font_fallback_win_unittest.cc",
530 "icon_util_unittest.cc", 528 "icon_util_unittest.cc",
531 "icon_util_unittests.rc", 529 "icon_util_unittests.rc",
532 "path_win_unittest.cc", 530 "path_win_unittest.cc",
533 "platform_font_win_unittest.cc", 531 "platform_font_win_unittest.cc",
532 "sys_color_change_listener.cc",
533 "sys_color_change_listener.h",
534 ] 534 ]
535 535
536 ldflags = [ 536 ldflags = [
537 "/DELAYLOAD:d2d1.dll", 537 "/DELAYLOAD:d2d1.dll",
538 "/DELAYLOAD:d3d10_1.dll", 538 "/DELAYLOAD:d3d10_1.dll",
539 ] 539 ]
540 540
541 libs = [ 541 libs = [
542 "d2d1.lib", 542 "d2d1.lib",
543 "d3d10_1.lib", 543 "d3d10_1.lib",
544 "imm32.lib", 544 "imm32.lib",
545 "oleacc.lib", 545 "oleacc.lib",
546 ] 546 ]
547 } 547 }
548 } 548 }
549 549
550 if (is_android) { 550 if (is_android) {
551 generate_jni("gfx_jni_headers") { 551 generate_jni("gfx_jni_headers") {
552 sources = [ 552 sources = [
553 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", 553 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java",
554 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", 554 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java",
555 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", 555 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java",
556 ] 556 ]
557 jni_package = "gfx" 557 jni_package = "gfx"
558 } 558 }
559 } 559 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698