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