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

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

Issue 2733823003: Move final vector icons out of ui/gfx/vector_icons/ and remove the (Closed)
Patch Set: fix deps Created 3 years, 9 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
« no previous file with comments | « ios/chrome/browser/ui/toolbar/toolbar_model_delegate_ios.mm ('k') | ui/gfx/paint_vector_icon.h » ('j') | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 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
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
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 }
OLDNEW
« no previous file with comments | « ios/chrome/browser/ui/toolbar/toolbar_model_delegate_ios.mm ('k') | ui/gfx/paint_vector_icon.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698