| 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 396 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 407 } | 407 } |
| 408 | 408 |
| 409 # GYP version: ui/gfx/gfx.gyp:aggregate_vector_icons | 409 # GYP version: ui/gfx/gfx.gyp:aggregate_vector_icons |
| 410 action("aggregate_vector_icons") { | 410 action("aggregate_vector_icons") { |
| 411 script = "vector_icons/aggregate_vector_icons.py" | 411 script = "vector_icons/aggregate_vector_icons.py" |
| 412 | 412 |
| 413 # TODO(estade): move all platform-specific icons into their own directories. | 413 # TODO(estade): move all platform-specific icons into their own directories. |
| 414 sources = [ | 414 sources = [ |
| 415 "vector_icons/account_box.icon", | 415 "vector_icons/account_box.icon", |
| 416 "vector_icons/account_child_invert.icon", | 416 "vector_icons/account_child_invert.icon", |
| 417 "vector_icons/account_circle.icon", |
| 417 "vector_icons/apps.icon", | 418 "vector_icons/apps.icon", |
| 418 "vector_icons/autologin.icon", | 419 "vector_icons/autologin.icon", |
| 419 "vector_icons/bar_close.1x.icon", | 420 "vector_icons/bar_close.1x.icon", |
| 420 "vector_icons/bar_close.icon", | 421 "vector_icons/bar_close.icon", |
| 421 "vector_icons/blocked_badge.icon", | 422 "vector_icons/blocked_badge.icon", |
| 422 "vector_icons/browser_tools.1x.icon", | 423 "vector_icons/browser_tools.1x.icon", |
| 423 "vector_icons/browser_tools.icon", | 424 "vector_icons/browser_tools.icon", |
| 424 "vector_icons/browser_tools_error.1x.icon", | 425 "vector_icons/browser_tools_error.1x.icon", |
| 425 "vector_icons/browser_tools_error.icon", | 426 "vector_icons/browser_tools_error.icon", |
| 426 "vector_icons/browser_tools_update.1x.icon", | 427 "vector_icons/browser_tools_update.1x.icon", |
| (...skipping 451 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 878 if (is_android) { | 879 if (is_android) { |
| 879 generate_jni("gfx_jni_headers") { | 880 generate_jni("gfx_jni_headers") { |
| 880 sources = [ | 881 sources = [ |
| 881 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 882 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 882 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 883 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 883 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 884 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 884 ] | 885 ] |
| 885 jni_package = "gfx" | 886 jni_package = "gfx" |
| 886 } | 887 } |
| 887 } | 888 } |
| OLD | NEW |