| 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 | 6 |
| 7 if (is_android) { | 7 if (is_android) { |
| 8 import("//build/config/android/rules.gni") | 8 import("//build/config/android/rules.gni") |
| 9 } | 9 } |
| 10 | 10 |
| (...skipping 808 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 819 "os_compat_nacl.cc", | 819 "os_compat_nacl.cc", |
| 820 "os_compat_nacl.h", | 820 "os_compat_nacl.h", |
| 821 "rand_util_nacl.cc", | 821 "rand_util_nacl.cc", |
| 822 "memory/shared_memory_nacl.cc", | 822 "memory/shared_memory_nacl.cc", |
| 823 ] | 823 ] |
| 824 } | 824 } |
| 825 | 825 |
| 826 # Windows. | 826 # Windows. |
| 827 if (is_win) { | 827 if (is_win) { |
| 828 sources -= [ | 828 sources -= [ |
| 829 "event_recorder_stubs.cc", |
| 829 "message_loop/message_pump_libevent.cc", | 830 "message_loop/message_pump_libevent.cc", |
| 830 "strings/string16.cc", | 831 "strings/string16.cc", |
| 831 # Not using sha1_win.cc because it may have caused a | 832 # Not using sha1_win.cc because it may have caused a |
| 832 # regression to page cycler moz. | 833 # regression to page cycler moz. |
| 833 "sha1_win.cc", | 834 "sha1_win.cc", |
| 834 ] | 835 ] |
| 835 | 836 |
| 837 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 838 #cflags = [ "/wd4267" ] |
| 839 |
| 836 libs = [ | 840 libs = [ |
| 837 "netapi32.lib", | 841 "netapi32.lib", |
| 838 "powrprof.lib", | 842 "powrprof.lib", |
| 839 ] | 843 ] |
| 840 ldflags = [ | 844 ldflags = [ |
| 841 "/DELAYLOAD:powrprof.dll", | 845 "/DELAYLOAD:powrprof.dll", |
| 842 ] | 846 ] |
| 843 } else if (!is_nacl) { | 847 } else if (!is_nacl) { |
| 844 # Non-Windows. | 848 # Non-Windows. |
| 845 deps += [ "//third_party/libevent" ] | 849 deps += [ "//third_party/libevent" ] |
| (...skipping 604 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1450 | 1454 |
| 1451 unittest_apk("base_unittests_apk") { | 1455 unittest_apk("base_unittests_apk") { |
| 1452 deps = [ | 1456 deps = [ |
| 1453 ":base_java", | 1457 ":base_java", |
| 1454 ":base_java_unittest_support", | 1458 ":base_java_unittest_support", |
| 1455 ":base_unittests", | 1459 ":base_unittests", |
| 1456 ] | 1460 ] |
| 1457 unittests_dep = ":base_unittests" | 1461 unittests_dep = ":base_unittests" |
| 1458 } | 1462 } |
| 1459 } | 1463 } |
| OLD | NEW |