| 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/ui.gni") | 6 import("//build/config/ui.gni") |
| 7 import("//testing/test.gni") | 7 import("//testing/test.gni") |
| 8 | 8 |
| 9 if (is_android) { | 9 if (is_android) { |
| 10 import("//build/config/android/rules.gni") | 10 import("//build/config/android/rules.gni") |
| (...skipping 590 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 601 "win/iat_patch_function.cc", | 601 "win/iat_patch_function.cc", |
| 602 "win/iat_patch_function.h", | 602 "win/iat_patch_function.h", |
| 603 "win/iunknown_impl.cc", | 603 "win/iunknown_impl.cc", |
| 604 "win/iunknown_impl.h", | 604 "win/iunknown_impl.h", |
| 605 "win/message_window.cc", | 605 "win/message_window.cc", |
| 606 "win/message_window.h", | 606 "win/message_window.h", |
| 607 "win/metro.cc", | 607 "win/metro.cc", |
| 608 "win/metro.h", | 608 "win/metro.h", |
| 609 "win/object_watcher.cc", | 609 "win/object_watcher.cc", |
| 610 "win/object_watcher.h", | 610 "win/object_watcher.h", |
| 611 "win/process_startup_helper.cc", |
| 612 "win/process_startup_helper.h", |
| 611 "win/registry.cc", | 613 "win/registry.cc", |
| 612 "win/registry.h", | 614 "win/registry.h", |
| 613 "win/resource_util.cc", | 615 "win/resource_util.cc", |
| 614 "win/resource_util.h", | 616 "win/resource_util.h", |
| 615 "win/scoped_bstr.cc", | 617 "win/scoped_bstr.cc", |
| 616 "win/scoped_bstr.h", | 618 "win/scoped_bstr.h", |
| 617 "win/scoped_co_mem.h", | 619 "win/scoped_co_mem.h", |
| 618 "win/scoped_com_initializer.h", | 620 "win/scoped_com_initializer.h", |
| 619 "win/scoped_comptr.h", | 621 "win/scoped_comptr.h", |
| 620 "win/scoped_gdi_object.h", | 622 "win/scoped_gdi_object.h", |
| (...skipping 1063 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1684 | 1686 |
| 1685 # GYP: //base.gyp:base_java_unittest_support | 1687 # GYP: //base.gyp:base_java_unittest_support |
| 1686 android_library("base_java_unittest_support") { | 1688 android_library("base_java_unittest_support") { |
| 1687 deps = [ | 1689 deps = [ |
| 1688 ":base_java", | 1690 ":base_java", |
| 1689 ] | 1691 ] |
| 1690 java_files = | 1692 java_files = |
| 1691 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1693 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1692 } | 1694 } |
| 1693 } | 1695 } |
| OLD | NEW |