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

Side by Side Diff: BUILD.gn

Issue 2271743002: Reland: Experimental parsing expression grammar (PEG) template library (Closed) Base URL: https://chromium.googlesource.com/skia.git@master
Patch Set: SkTLazy initializer fix Created 4 years, 4 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 | experimental/svg/model/SkPEG.h » ('j') | experimental/svg/model/SkPEG.h » ('J')
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 declare_args() { 6 declare_args() {
7 } 7 }
8 8
9 skia_public_includes = [ 9 skia_public_includes = [
10 "include/android", 10 "include/android",
(...skipping 481 matching lines...) Expand 10 before | Expand all | Expand 10 after
492 public_include_dirs = [ "tests" ] 492 public_include_dirs = [ "tests" ]
493 sources = tests_sources - [ 493 sources = tests_sources - [
494 rebase_path("tests/FontMgrAndroidParserTest.cpp"), # Android only 494 rebase_path("tests/FontMgrAndroidParserTest.cpp"), # Android only
495 rebase_path("tests/PathOpsSkpClipTest.cpp"), # alternate main 495 rebase_path("tests/PathOpsSkpClipTest.cpp"), # alternate main
496 rebase_path("tests/SkSLErrorTest.cpp"), # TODO: make work 496 rebase_path("tests/SkSLErrorTest.cpp"), # TODO: make work
497 rebase_path("tests/SkSLGLSLTest.cpp"), # TODO: make work 497 rebase_path("tests/SkSLGLSLTest.cpp"), # TODO: make work
498 rebase_path("tests/SkpSkGrTest.cpp"), # doesn't compile 498 rebase_path("tests/SkpSkGrTest.cpp"), # doesn't compile
499 rebase_path("tests/skia_test.cpp"), # alternate main 499 rebase_path("tests/skia_test.cpp"), # alternate main
500 ] 500 ]
501 deps = [ 501 deps = [
502 ":experimental_svg_model",
502 ":flags", 503 ":flags",
503 ":gpu_tool_utils", 504 ":gpu_tool_utils",
504 ":skia", 505 ":skia",
505 ":tool_utils", 506 ":tool_utils",
506 "//third_party/libpng", 507 "//third_party/libpng",
507 "//third_party/zlib", 508 "//third_party/zlib",
508 ] 509 ]
509 } 510 }
510 511
511 bench_sources = exec_script("gyp/find.py", 512 bench_sources = exec_script("gyp/find.py",
(...skipping 99 matching lines...) Expand 10 before | Expand all | Expand 10 after
611 "tools/SkShaper_harfbuzz.cpp", 612 "tools/SkShaper_harfbuzz.cpp",
612 "tools/using_skia_and_harfbuzz.cpp", 613 "tools/using_skia_and_harfbuzz.cpp",
613 ] 614 ]
614 deps = [ 615 deps = [
615 ":skia", 616 ":skia",
616 "//third_party/harfbuzz", 617 "//third_party/harfbuzz",
617 ] 618 ]
618 testonly = true 619 testonly = true
619 } 620 }
620 } 621 }
OLDNEW
« no previous file with comments | « no previous file | experimental/svg/model/SkPEG.h » ('j') | experimental/svg/model/SkPEG.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698