| 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 import("//testing/libfuzzer/fuzzer_test.gni") | 7 import("//testing/libfuzzer/fuzzer_test.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/config.gni") | 10 import("//build/config/android/config.gni") |
| (...skipping 339 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 350 } else if (!is_ios) { | 350 } else if (!is_ios) { |
| 351 sources -= [ "canvas_notimplemented.cc" ] | 351 sources -= [ "canvas_notimplemented.cc" ] |
| 352 } | 352 } |
| 353 | 353 |
| 354 # Desktop only. | 354 # Desktop only. |
| 355 if (use_aura || (!is_ios && !is_android)) { | 355 if (use_aura || (!is_ios && !is_android)) { |
| 356 sources += [ | 356 sources += [ |
| 357 "paint_vector_icon.cc", | 357 "paint_vector_icon.cc", |
| 358 "paint_vector_icon.h", | 358 "paint_vector_icon.h", |
| 359 "vector_icon_types.h", | 359 "vector_icon_types.h", |
| 360 "vector_icons_public.h", | |
| 361 ] | 360 ] |
| 362 deps += [ "//ui/gfx/vector_icons" ] | |
| 363 } | 361 } |
| 364 | 362 |
| 365 # Windows. | 363 # Windows. |
| 366 if (is_win) { | 364 if (is_win) { |
| 367 cflags = [ "/wd4324" ] # Structure was padded due to __declspec(align()), w
hich is | 365 cflags = [ "/wd4324" ] # Structure was padded due to __declspec(align()), w
hich is |
| 368 # uninteresting. | 366 # uninteresting. |
| 369 | 367 |
| 370 libs = [ | 368 libs = [ |
| 371 "setupapi.lib", | 369 "setupapi.lib", |
| 372 "dwrite.lib", | 370 "dwrite.lib", |
| (...skipping 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 773 | 771 |
| 774 fuzzer_test("color_transform_fuzztest") { | 772 fuzzer_test("color_transform_fuzztest") { |
| 775 sources = [ | 773 sources = [ |
| 776 "color_transform_fuzzer.cc", | 774 "color_transform_fuzzer.cc", |
| 777 ] | 775 ] |
| 778 deps = [ | 776 deps = [ |
| 779 ":gfx", | 777 ":gfx", |
| 780 ] | 778 ] |
| 781 libfuzzer_options = [ "max_len=1024" ] | 779 libfuzzer_options = [ "max_len=1024" ] |
| 782 } | 780 } |
| OLD | NEW |