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

Side by Side Diff: gyp/tools.gyp

Issue 1437823004: Fix -Wunused-parameter errors in SkCodec.h in Android (Closed) Base URL: https://skia.googlesource.com/skia.git@master
Patch Set: Update test_public_includes to test codec Created 5 years, 1 month 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 | include/codec/SkCodec.h » ('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 2015 Google Inc. 1 # Copyright 2015 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 # GYP file to build various tools. 5 # GYP file to build various tools.
6 # 6 #
7 # To build on Linux: 7 # To build on Linux:
8 # ./gyp_skia tools.gyp && make tools 8 # ./gyp_skia tools.gyp && make tools
9 # 9 #
10 { 10 {
(...skipping 571 matching lines...) Expand 10 before | Expand all | Expand 10 after
582 { 582 {
583 'target_name': 'test_public_includes', 583 'target_name': 'test_public_includes',
584 'type': 'static_library', 584 'type': 'static_library',
585 # Ensure that our public headers don't have unused params so that clients 585 # Ensure that our public headers don't have unused params so that clients
586 # (e.g. Android) that include us can build with these warnings enabled 586 # (e.g. Android) that include us can build with these warnings enabled
587 'cflags!': [ '-Wno-unused-parameter' ], 587 'cflags!': [ '-Wno-unused-parameter' ],
588 'variables': { 588 'variables': {
589 'includes_to_test': [ 589 'includes_to_test': [
590 '<(skia_include_path)/animator', 590 '<(skia_include_path)/animator',
591 '<(skia_include_path)/c', 591 '<(skia_include_path)/c',
592 '<(skia_include_path)/codec',
592 '<(skia_include_path)/config', 593 '<(skia_include_path)/config',
593 '<(skia_include_path)/core', 594 '<(skia_include_path)/core',
594 '<(skia_include_path)/effects', 595 '<(skia_include_path)/effects',
595 '<(skia_include_path)/gpu', 596 '<(skia_include_path)/gpu',
596 '<(skia_include_path)/images', 597 '<(skia_include_path)/images',
597 '<(skia_include_path)/pathops', 598 '<(skia_include_path)/pathops',
598 '<(skia_include_path)/pipe', 599 '<(skia_include_path)/pipe',
599 '<(skia_include_path)/ports', 600 '<(skia_include_path)/ports',
600 '<(skia_include_path)/svg/parser', 601 '<(skia_include_path)/svg/parser',
601 '<(skia_include_path)/utils', 602 '<(skia_include_path)/utils',
(...skipping 135 matching lines...) Expand 10 before | Expand all | Expand 10 after
737 'flags.gyp:flags', 738 'flags.gyp:flags',
738 'skia_lib.gyp:skia_lib', 739 'skia_lib.gyp:skia_lib',
739 'resources', 740 'resources',
740 ], 741 ],
741 }, 742 },
742 ], 743 ],
743 }, 744 },
744 ], 745 ],
745 ], 746 ],
746 } 747 }
OLDNEW
« no previous file with comments | « no previous file | include/codec/SkCodec.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698