| 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/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 627 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 638 "win/wrapped_window_proc.h", | 638 "win/wrapped_window_proc.h", |
| 639 ] | 639 ] |
| 640 | 640 |
| 641 sources -= [ | 641 sources -= [ |
| 642 "sys_info_freebsd.cc", | 642 "sys_info_freebsd.cc", |
| 643 "sys_info_openbsd.cc", | 643 "sys_info_openbsd.cc", |
| 644 ] | 644 ] |
| 645 | 645 |
| 646 data = [] | 646 data = [] |
| 647 | 647 |
| 648 configs += [ | 648 configs += [ ":base_implementation" ] |
| 649 ":base_implementation", | |
| 650 "//build/config:precompiled_headers", | |
| 651 ] | |
| 652 | 649 |
| 653 deps = [ | 650 deps = [ |
| 654 ":base_static", | 651 ":base_static", |
| 655 "//base/allocator:allocator_extension_thunks", | 652 "//base/allocator:allocator_extension_thunks", |
| 656 "//base/third_party/dynamic_annotations", | 653 "//base/third_party/dynamic_annotations", |
| 657 "//third_party/modp_b64", | 654 "//third_party/modp_b64", |
| 658 ] | 655 ] |
| 659 | 656 |
| 660 public_deps = [ | 657 public_deps = [ |
| 661 ":base_paths", | 658 ":base_paths", |
| (...skipping 963 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1625 | 1622 |
| 1626 # GYP: //base.gyp:base_java_unittest_support | 1623 # GYP: //base.gyp:base_java_unittest_support |
| 1627 android_library("base_java_unittest_support") { | 1624 android_library("base_java_unittest_support") { |
| 1628 deps = [ | 1625 deps = [ |
| 1629 ":base_java", | 1626 ":base_java", |
| 1630 ] | 1627 ] |
| 1631 java_files = | 1628 java_files = |
| 1632 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1629 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1633 } | 1630 } |
| 1634 } | 1631 } |
| OLD | NEW |