| 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 445 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 872 if (is_android) { | 873 if (is_android) { |
| 873 generate_jni("gfx_jni_headers") { | 874 generate_jni("gfx_jni_headers") { |
| 874 sources = [ | 875 sources = [ |
| 875 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 876 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 876 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 877 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 877 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 878 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 878 ] | 879 ] |
| 879 jni_package = "gfx" | 880 jni_package = "gfx" |
| 880 } | 881 } |
| 881 } | 882 } |
| OLD | NEW |