BUILD.gn 878 B

1234567891011121314151617181920212223242526272829
  1. # Copyright 2015 The Chromium Authors. All rights reserved.
  2. # Use of this source code is governed by a BSD-style license that can be
  3. # found in the LICENSE file.
  4. import("//build/config/android/rules.gni")
  5. android_resources("customtabs_benchmark_apk_resources") {
  6. sources = [
  7. "res/layout/activity_web_view.xml",
  8. "res/layout/main.xml",
  9. "res/values/strings.xml",
  10. ]
  11. }
  12. android_apk("customtabs_benchmark_apk") {
  13. sources = [
  14. "java/src/org/chromium/customtabs/test/MainActivity.java",
  15. "java/src/org/chromium/customtabs/test/WebViewActivity.java",
  16. ]
  17. android_manifest = "java/AndroidManifest.xml"
  18. min_sdk_version = 21
  19. target_sdk_version = 22
  20. apk_name = "CustomTabsBenchmark"
  21. deps = [
  22. ":customtabs_benchmark_apk_resources",
  23. "//third_party/androidx:androidx_browser_browser_java",
  24. "//third_party/androidx:androidx_core_core_java",
  25. ]
  26. }