Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(175)

Side by Side Diff: base/BUILD.gn

Issue 644783005: The DisplayVirtualKeyboard function on Windows 8 and beyond should not be displaying the OSK if a p… (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fixed views_unittests Created 6 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
« no previous file with comments | « no previous file | base/base.gyp » ('j') | base/win/win_util.cc » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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
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 625 matching lines...) Expand 10 before | Expand all | Expand 10 after
1493 # GYP: //base.gyp:base_unittests_apk 1497 # GYP: //base.gyp:base_unittests_apk
1494 unittest_apk("base_unittests_apk") { 1498 unittest_apk("base_unittests_apk") {
1495 deps = [ 1499 deps = [
1496 ":base_java", 1500 ":base_java",
1497 ":base_java_unittest_support", 1501 ":base_java_unittest_support",
1498 ":base_unittests", 1502 ":base_unittests",
1499 ] 1503 ]
1500 unittests_dep = ":base_unittests" 1504 unittests_dep = ":base_unittests"
1501 } 1505 }
1502 } 1506 }
OLDNEW
« no previous file with comments | « no previous file | base/base.gyp » ('j') | base/win/win_util.cc » ('J')

Powered by Google App Engine
This is Rietveld 408576698