| 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 832 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 843 "strings/string16.cc", | 843 "strings/string16.cc", |
| 844 # Not using sha1_win.cc because it may have caused a | 844 # Not using sha1_win.cc because it may have caused a |
| 845 # regression to page cycler moz. | 845 # regression to page cycler moz. |
| 846 "sha1_win.cc", | 846 "sha1_win.cc", |
| 847 ] | 847 ] |
| 848 | 848 |
| 849 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. | 849 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. |
| 850 #cflags = [ "/wd4267" ] | 850 #cflags = [ "/wd4267" ] |
| 851 | 851 |
| 852 libs = [ | 852 libs = [ |
| 853 "cfgmgr32.lib", |
| 853 "netapi32.lib", | 854 "netapi32.lib", |
| 854 "powrprof.lib", | 855 "powrprof.lib", |
| 856 "setupapi.lib", |
| 855 ] | 857 ] |
| 856 ldflags = [ | 858 ldflags = [ |
| 859 "/DELAYLOAD:cfgmgr32.dll", |
| 857 "/DELAYLOAD:powrprof.dll", | 860 "/DELAYLOAD:powrprof.dll", |
| 861 "/DELAYLOAD:setupapi.dll", |
| 858 ] | 862 ] |
| 859 } else if (!is_nacl) { | 863 } else if (!is_nacl) { |
| 860 # Non-Windows. | 864 # Non-Windows. |
| 861 deps += [ "//third_party/libevent" ] | 865 deps += [ "//third_party/libevent" ] |
| 862 } | 866 } |
| 863 | 867 |
| 864 # Mac. | 868 # Mac. |
| 865 if (is_mac) { | 869 if (is_mac) { |
| 866 sources += [ | 870 sources += [ |
| 867 "memory/discardable_memory_mach.cc", | 871 "memory/discardable_memory_mach.cc", |
| (...skipping 623 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1491 # GYP: //base.gyp:base_unittests_apk | 1495 # GYP: //base.gyp:base_unittests_apk |
| 1492 unittest_apk("base_unittests_apk") { | 1496 unittest_apk("base_unittests_apk") { |
| 1493 deps = [ | 1497 deps = [ |
| 1494 ":base_java", | 1498 ":base_java", |
| 1495 ":base_java_unittest_support", | 1499 ":base_java_unittest_support", |
| 1496 ":base_unittests", | 1500 ":base_unittests", |
| 1497 ] | 1501 ] |
| 1498 unittests_dep = ":base_unittests" | 1502 unittests_dep = ":base_unittests" |
| 1499 } | 1503 } |
| 1500 } | 1504 } |
| OLD | NEW |