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

Side by Side Diff: BUILD.gn

Issue 2347953002: format GN files, and invert if->config to config->if (Closed)
Patch Set: Created 4 years, 3 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 | gn/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 2016 Google Inc. 1 # Copyright 2016 Google Inc.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license that can be 3 # Use of this source code is governed by a BSD-style license that can be
4 # found in the LICENSE file. 4 # found in the LICENSE file.
5 5
6 import("gn/shared_sources.gni") 6 import("gn/shared_sources.gni")
7 7
8 declare_args() { 8 declare_args() {
9 skia_enable_tools = !is_fuchsia && !is_component_build 9 skia_enable_tools = !is_fuchsia && !is_component_build
10 10
(...skipping 463 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 "src/ports/SkFontMgr_win_dw.cpp", 474 "src/ports/SkFontMgr_win_dw.cpp",
475 "src/ports/SkFontMgr_win_dw_factory.cpp", 475 "src/ports/SkFontMgr_win_dw_factory.cpp",
476 "src/ports/SkImageEncoder_WIC.cpp", 476 "src/ports/SkImageEncoder_WIC.cpp",
477 "src/ports/SkImageGeneratorWIC.cpp", 477 "src/ports/SkImageGeneratorWIC.cpp",
478 "src/ports/SkOSFile_win.cpp", 478 "src/ports/SkOSFile_win.cpp",
479 "src/ports/SkScalerContext_win_dw.cpp", 479 "src/ports/SkScalerContext_win_dw.cpp",
480 "src/ports/SkTLS_win.cpp", 480 "src/ports/SkTLS_win.cpp",
481 "src/ports/SkTypeface_win_dw.cpp", 481 "src/ports/SkTypeface_win_dw.cpp",
482 "src/xps/SkDocument_XPS.cpp", 482 "src/xps/SkDocument_XPS.cpp",
483 ] 483 ]
484 sources -= [ get_path_info("src/utils/SkThreadUtils_pthread.cpp", "abspath") ] 484 sources -=
485 [ get_path_info("src/utils/SkThreadUtils_pthread.cpp", "abspath") ]
485 } else { 486 } else {
486 sources += [ 487 sources += [
487 "src/ports/SkOSFile_posix.cpp", 488 "src/ports/SkOSFile_posix.cpp",
488 "src/ports/SkTLS_pthread.cpp", 489 "src/ports/SkTLS_pthread.cpp",
489 "src/xps/SkDocument_XPS_None.cpp", 490 "src/xps/SkDocument_XPS_None.cpp",
490 ] 491 ]
491 } 492 }
492 493
493 if (is_android) { 494 if (is_android) {
494 deps += [ 495 deps += [
(...skipping 373 matching lines...) Expand 10 before | Expand all | Expand 10 after
868 "tools/get_images_from_skps.cpp", 869 "tools/get_images_from_skps.cpp",
869 ] 870 ]
870 deps = [ 871 deps = [
871 ":flags", 872 ":flags",
872 ":skia", 873 ":skia",
873 "//third_party/jsoncpp", 874 "//third_party/jsoncpp",
874 ] 875 ]
875 testonly = true 876 testonly = true
876 } 877 }
877 } 878 }
OLDNEW
« no previous file with comments | « no previous file | gn/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698