| 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 410 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 421 sources = [ | 421 sources = [ |
| 422 "vector_icon_types.h", | 422 "vector_icon_types.h", |
| 423 "vector_icons/account_box.icon", | 423 "vector_icons/account_box.icon", |
| 424 "vector_icons/account_child_invert.icon", | 424 "vector_icons/account_child_invert.icon", |
| 425 "vector_icons/apps.icon", | 425 "vector_icons/apps.icon", |
| 426 "vector_icons/autofill.icon", | 426 "vector_icons/autofill.icon", |
| 427 "vector_icons/bar_close.1x.icon", | 427 "vector_icons/bar_close.1x.icon", |
| 428 "vector_icons/bar_close.icon", | 428 "vector_icons/bar_close.icon", |
| 429 "vector_icons/blocked_badge.icon", | 429 "vector_icons/blocked_badge.icon", |
| 430 "vector_icons/check_circle.icon", | 430 "vector_icons/check_circle.icon", |
| 431 "vector_icons/chrome_product.icon", |
| 431 "vector_icons/code.icon", | 432 "vector_icons/code.icon", |
| 432 "vector_icons/cookie.icon", | 433 "vector_icons/cookie.icon", |
| 433 "vector_icons/crashed_tab.icon", | 434 "vector_icons/crashed_tab.icon", |
| 434 "vector_icons/error_circle.icon", | 435 "vector_icons/error_circle.icon", |
| 435 "vector_icons/extension.icon", | 436 "vector_icons/extension.icon", |
| 436 "vector_icons/file_download.icon", | 437 "vector_icons/file_download.icon", |
| 437 "vector_icons/file_download_incognito.1x.icon", | 438 "vector_icons/file_download_incognito.1x.icon", |
| 438 "vector_icons/file_download_incognito.icon", | 439 "vector_icons/file_download_incognito.icon", |
| 439 "vector_icons/file_download_shelf.icon", | 440 "vector_icons/file_download_shelf.icon", |
| 440 "vector_icons/find_next.1x.icon", | 441 "vector_icons/find_next.1x.icon", |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 631 "//skia", | 632 "//skia", |
| 632 "//third_party/icu:icuuc", | 633 "//third_party/icu:icuuc", |
| 633 "//third_party/libpng", | 634 "//third_party/libpng", |
| 634 "//third_party/zlib", | 635 "//third_party/zlib", |
| 635 "//testing/gtest", | 636 "//testing/gtest", |
| 636 "//ui/base", | 637 "//ui/base", |
| 637 "//ui/gfx/geometry", | 638 "//ui/gfx/geometry", |
| 638 "//ui/resources:ui_test_pak", | 639 "//ui/resources:ui_test_pak", |
| 639 ] | 640 ] |
| 640 | 641 |
| 641 data_deps = [ "//ui/resources:ui_test_pak" ] | 642 data_deps = [ |
| 643 "//ui/resources:ui_test_pak", |
| 644 ] |
| 642 | 645 |
| 643 if (!is_mac && !is_ios) { | 646 if (!is_mac && !is_ios) { |
| 644 sources += [ | 647 sources += [ |
| 645 "interpolated_transform_unittest.cc", | 648 "interpolated_transform_unittest.cc", |
| 646 "transform_unittest.cc", | 649 "transform_unittest.cc", |
| 647 ] | 650 ] |
| 648 } | 651 } |
| 649 | 652 |
| 650 if (is_android) { | 653 if (is_android) { |
| 651 sources -= [ | 654 sources -= [ |
| (...skipping 40 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 692 if (is_android) { | 695 if (is_android) { |
| 693 generate_jni("gfx_jni_headers") { | 696 generate_jni("gfx_jni_headers") { |
| 694 sources = [ | 697 sources = [ |
| 695 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", | 698 "../android/java/src/org/chromium/ui/gfx/BitmapHelper.java", |
| 696 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", | 699 "../android/java/src/org/chromium/ui/gfx/DeviceDisplayInfo.java", |
| 697 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", | 700 "../android/java/src/org/chromium/ui/gfx/ViewConfigurationHelper.java", |
| 698 ] | 701 ] |
| 699 jni_package = "gfx" | 702 jni_package = "gfx" |
| 700 } | 703 } |
| 701 } | 704 } |
| OLD | NEW |