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

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

Issue 1250323003: Vectorize profile badges in avatar menu (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: f is for float Created 5 years, 4 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 | « chrome/browser/ui/views/profiles/profile_chooser_view.cc ('k') | ui/gfx/paint_vector_icon.cc » ('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 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 381 matching lines...) Expand 10 before | Expand all | Expand 10 after
392 392
393 if (use_cairo) { 393 if (use_cairo) {
394 configs += [ "//build/config/linux:pangocairo" ] 394 configs += [ "//build/config/linux:pangocairo" ]
395 } 395 }
396 } 396 }
397 397
398 # GYP version: ui/gfx/gfx.gyp:aggregate_vector_icons 398 # GYP version: ui/gfx/gfx.gyp:aggregate_vector_icons
399 action("aggregate_vector_icons") { 399 action("aggregate_vector_icons") {
400 script = "vector_icons/aggregate_vector_icons.py" 400 script = "vector_icons/aggregate_vector_icons.py"
401 sources = [ 401 sources = [
402 "vector_icons/account_child_invert.icon",
402 "vector_icons/check_circle.icon", 403 "vector_icons/check_circle.icon",
403 "vector_icons/extension.icon", 404 "vector_icons/extension.icon",
404 "vector_icons/help_outline.icon", 405 "vector_icons/help_outline.icon",
405 "vector_icons/location_on.icon", 406 "vector_icons/location_on.icon",
406 "vector_icons/notifications.icon", 407 "vector_icons/notifications.icon",
407 "vector_icons/photo_camera.icon", 408 "vector_icons/photo_camera.icon",
409 "vector_icons/supervisor_account.icon",
408 ] 410 ]
409 outputs = [ 411 outputs = [
410 vector_icons_cc_file, 412 vector_icons_cc_file,
411 vector_icons_h_file, 413 vector_icons_h_file,
412 ] 414 ]
413 415
414 args = [ 416 args = [
415 "--working_directory=" + rebase_path("vector_icons/"), 417 "--working_directory=" + rebase_path("vector_icons/"),
416 "--output_cc=" + rebase_path(vector_icons_cc_file, root_build_dir), 418 "--output_cc=" + rebase_path(vector_icons_cc_file, root_build_dir),
417 "--output_h=" + rebase_path(vector_icons_h_file, root_build_dir), 419 "--output_h=" + rebase_path(vector_icons_h_file, root_build_dir),
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after
600 if (is_android) { 602 if (is_android) {
601 generate_jni("gfx_jni_headers") { 603 generate_jni("gfx_jni_headers") {
602 sources = [ 604 sources = [
603 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", 605 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java",
604 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", 606 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java",
605 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", 607 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java",
606 ] 608 ]
607 jni_package = "gfx" 609 jni_package = "gfx"
608 } 610 }
609 } 611 }
OLDNEW
« no previous file with comments | « chrome/browser/ui/views/profiles/profile_chooser_view.cc ('k') | ui/gfx/paint_vector_icon.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698