| OLD | NEW |
| 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/compiler/compiler.gni") | 5 import("//build/config/compiler/compiler.gni") |
| 6 import("//build/config/nacl/config.gni") | 6 import("//build/config/nacl/config.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//testing/test.gni") | 8 import("//testing/test.gni") |
| 9 | 9 |
| 10 if (is_android) { | 10 if (is_android) { |
| (...skipping 682 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 693 | 693 |
| 694 data = [] | 694 data = [] |
| 695 | 695 |
| 696 configs += [ | 696 configs += [ |
| 697 ":base_flags", | 697 ":base_flags", |
| 698 ":base_implementation", | 698 ":base_implementation", |
| 699 "//build/config:precompiled_headers", | 699 "//build/config:precompiled_headers", |
| 700 ] | 700 ] |
| 701 | 701 |
| 702 deps = [ | 702 deps = [ |
| 703 "//base/allocator:allocator_extension_thunks", | 703 "//base/allocator:extension_thunks", |
| 704 "//base/third_party/dynamic_annotations", | 704 "//base/third_party/dynamic_annotations", |
| 705 "//third_party/modp_b64", | 705 "//third_party/modp_b64", |
| 706 ] | 706 ] |
| 707 | 707 |
| 708 public_deps = [ | 708 public_deps = [ |
| 709 ":base_paths", | 709 ":base_paths", |
| 710 ":base_static", | 710 ":base_static", |
| 711 "//base/debug", | 711 "//base/debug", |
| 712 "//base/json", | 712 "//base/json", |
| 713 "//base/memory", | 713 "//base/memory", |
| (...skipping 1036 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1750 | 1750 |
| 1751 # GYP: //base.gyp:base_java_unittest_support | 1751 # GYP: //base.gyp:base_java_unittest_support |
| 1752 android_library("base_java_unittest_support") { | 1752 android_library("base_java_unittest_support") { |
| 1753 deps = [ | 1753 deps = [ |
| 1754 ":base_java", | 1754 ":base_java", |
| 1755 ] | 1755 ] |
| 1756 java_files = | 1756 java_files = |
| 1757 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1757 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1758 } | 1758 } |
| 1759 } | 1759 } |
| OLD | NEW |