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

Side by Side Diff: base/BUILD.gn

Issue 1218053003: [Android] Begin switching from lighttpd + apache to EmbeddedTestServer. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 years, 5 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 | « no previous file | base/android/java/templates/NativeLibraries.template » ('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 (c) 2013 The Chromium Authors. All rights reserved. 1 # Copyright (c) 2013 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/rules.gni") 9 import("//build/config/android/rules.gni")
10 } 10 }
(...skipping 1567 matching lines...) Expand 10 before | Expand all | Expand 10 after
1578 ] 1578 ]
1579 DEPRECATED_java_in_dir = "android/javatests/src" 1579 DEPRECATED_java_in_dir = "android/javatests/src"
1580 } 1580 }
1581 1581
1582 # GYP: //base.gyp:base_java_test_support 1582 # GYP: //base.gyp:base_java_test_support
1583 android_library("base_java_test_support") { 1583 android_library("base_java_test_support") {
1584 deps = [ 1584 deps = [
1585 ":base_java", 1585 ":base_java",
1586 "//testing/android/reporter:reporter_java", 1586 "//testing/android/reporter:reporter_java",
1587 ] 1587 ]
1588 srcjar_deps = [ ":base_native_test_libraries_gen" ]
1588 DEPRECATED_java_in_dir = "test/android/javatests/src" 1589 DEPRECATED_java_in_dir = "test/android/javatests/src"
1590
1591 jar_excluded_patterns = [
1592 "*/NativeTestLibraries.class",
1593 "*/NativeTestLibraries##*.class",
1594 ]
1589 } 1595 }
1590 1596
1591 # GYP: //base.gyp:base_junit_tests 1597 # GYP: //base.gyp:base_junit_tests
1592 junit_binary("base_junit_tests") { 1598 junit_binary("base_junit_tests") {
1593 java_files = [ "android/junit/src/org/chromium/base/LogTest.java" ] 1599 java_files = [ "android/junit/src/org/chromium/base/LogTest.java" ]
1594 deps = [ 1600 deps = [
1595 ":base_java", 1601 ":base_java",
1596 ":base_java_test_support", 1602 ":base_java_test_support",
1597 ] 1603 ]
1598 } 1604 }
(...skipping 18 matching lines...) Expand all
1617 } 1623 }
1618 1624
1619 # GYP: //base/base.gyp:base_native_libraries_gen 1625 # GYP: //base/base.gyp:base_native_libraries_gen
1620 java_cpp_template("base_native_libraries_gen") { 1626 java_cpp_template("base_native_libraries_gen") {
1621 sources = [ 1627 sources = [
1622 "android/java/templates/NativeLibraries.template", 1628 "android/java/templates/NativeLibraries.template",
1623 ] 1629 ]
1624 package_name = "org/chromium/base/library_loader" 1630 package_name = "org/chromium/base/library_loader"
1625 } 1631 }
1626 1632
1633 # GYP: //base/base.gyp:base_native_test_libraries_gen
1634 java_cpp_template("base_native_test_libraries_gen") {
1635 sources = [
1636 "android/java/templates/NativeTestLibraries.template",
1637 ]
1638 package_name = "org/chromium/base/library_loader"
1639 }
1640
1627 # GYP: //base.gyp:base_java_unittest_support 1641 # GYP: //base.gyp:base_java_unittest_support
1628 android_library("base_java_unittest_support") { 1642 android_library("base_java_unittest_support") {
1629 deps = [ 1643 deps = [
1630 ":base_java", 1644 ":base_java",
1631 ] 1645 ]
1632 java_files = 1646 java_files =
1633 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] 1647 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ]
1634 } 1648 }
1635 } 1649 }
OLDNEW
« no previous file with comments | « no previous file | base/android/java/templates/NativeLibraries.template » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698