| 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 742 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 753 # Remove NaCl stuff. | 753 # Remove NaCl stuff. |
| 754 sources -= [ | 754 sources -= [ |
| 755 "os_compat_nacl.cc", | 755 "os_compat_nacl.cc", |
| 756 "os_compat_nacl.h", | 756 "os_compat_nacl.h", |
| 757 "rand_util_nacl.cc", | 757 "rand_util_nacl.cc", |
| 758 ] | 758 ] |
| 759 } | 759 } |
| 760 | 760 |
| 761 # Windows. | 761 # Windows. |
| 762 if (is_win) { | 762 if (is_win) { |
| 763 sources += [ |
| 764 "profiler/win32_stack_frame_unwinder.cc", |
| 765 "profiler/win32_stack_frame_unwinder.h", |
| 766 ] |
| 767 |
| 763 sources -= [ | 768 sources -= [ |
| 764 "message_loop/message_pump_libevent.cc", | 769 "message_loop/message_pump_libevent.cc", |
| 765 "strings/string16.cc", | 770 "strings/string16.cc", |
| 766 | 771 |
| 767 # Not using sha1_win.cc because it may have caused a | 772 # Not using sha1_win.cc because it may have caused a |
| 768 # regression to page cycler moz. | 773 # regression to page cycler moz. |
| 769 "sha1_win.cc", | 774 "sha1_win.cc", |
| 770 ] | 775 ] |
| 771 | 776 |
| 772 # Required for base/stack_trace_win.cc to symbolize correctly. | 777 # Required for base/stack_trace_win.cc to symbolize correctly. |
| (...skipping 886 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1659 | 1664 |
| 1660 # GYP: //base.gyp:base_java_unittest_support | 1665 # GYP: //base.gyp:base_java_unittest_support |
| 1661 android_library("base_java_unittest_support") { | 1666 android_library("base_java_unittest_support") { |
| 1662 deps = [ | 1667 deps = [ |
| 1663 ":base_java", | 1668 ":base_java", |
| 1664 ] | 1669 ] |
| 1665 java_files = | 1670 java_files = |
| 1666 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] | 1671 [ "test/android/java/src/org/chromium/base/ContentUriTestUtils.java" ] |
| 1667 } | 1672 } |
| 1668 } | 1673 } |
| OLD | NEW |