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

Side by Side Diff: base/BUILD.gn

Issue 2895043002: Improve Visual Studio debug visualizers (Closed)
Patch Set: Skia typo Created 3 years, 7 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 | third_party/WebKit/Source/platform/wtf/BUILD.gn » ('j') | no next file with comments »
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 # HOW TO WRITE CONDITIONALS IN THIS FILE 5 # HOW TO WRITE CONDITIONALS IN THIS FILE
6 # ====================================== 6 # ======================================
7 # 7 #
8 # In many other places, one would write a conditional that expresses all the 8 # In many other places, one would write a conditional that expresses all the
9 # cases when a source file is used or unused, and then either add or subtract 9 # cases when a source file is used or unused, and then either add or subtract
10 # it from the sources list in that case 10 # it from the sources list in that case
(...skipping 1432 matching lines...) Expand 10 before | Expand all | Expand 10 after
1443 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations. 1443 # TODO(jschuh): crbug.com/167187 fix size_t to int truncations.
1444 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ] 1444 configs += [ "//build/config/compiler:no_size_t_to_int_warning" ]
1445 1445
1446 libs = [ 1446 libs = [
1447 "cfgmgr32.lib", 1447 "cfgmgr32.lib",
1448 "powrprof.lib", 1448 "powrprof.lib",
1449 "setupapi.lib", 1449 "setupapi.lib",
1450 "userenv.lib", 1450 "userenv.lib",
1451 "winmm.lib", 1451 "winmm.lib",
1452 ] 1452 ]
1453 all_dependent_configs += [ ":base_win_linker_flags" ] 1453 all_dependent_configs += [
1454 ":base_win_linker_flags",
1455 "//tools/win/DebugVisualizers:chrome",
1456 ]
1454 } else if ((!is_nacl && !is_fuchsia) || is_nacl_nonsfi) { 1457 } else if ((!is_nacl && !is_fuchsia) || is_nacl_nonsfi) {
1455 # Non-Windows. 1458 # Non-Windows.
1456 deps += [ "//base/third_party/libevent" ] 1459 deps += [ "//base/third_party/libevent" ]
1457 } 1460 }
1458 1461
1459 # Desktop Mac. 1462 # Desktop Mac.
1460 if (is_mac) { 1463 if (is_mac) {
1461 sources += [ 1464 sources += [
1462 "mac/scoped_typeref.h", 1465 "mac/scoped_typeref.h",
1463 "power_monitor/power_monitor_device_source_mac.mm", 1466 "power_monitor/power_monitor_device_source_mac.mm",
(...skipping 1289 matching lines...) Expand 10 before | Expand all | Expand 10 after
2753 } 2756 }
2754 2757
2755 fuzzer_test("base_json_correctness_fuzzer") { 2758 fuzzer_test("base_json_correctness_fuzzer") {
2756 sources = [ 2759 sources = [
2757 "json/correctness_fuzzer.cc", 2760 "json/correctness_fuzzer.cc",
2758 ] 2761 ]
2759 deps = [ 2762 deps = [
2760 ":base", 2763 ":base",
2761 ] 2764 ]
2762 } 2765 }
OLDNEW
« no previous file with comments | « no previous file | third_party/WebKit/Source/platform/wtf/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698