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

Side by Side Diff: .gn

Issue 2555813003: Add a tool to fix (some) errors reported by gn gen --check. (Closed)
Patch Set: More improvements! Created 4 years 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 | tools/gn_check_autofix.py » ('j') | tools/gn_check_autofix.py » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved. 1 # Copyright (c) 2015 The WebRTC project authors. All Rights Reserved.
2 # 2 #
3 # Use of this source code is governed by a BSD-style license 3 # Use of this source code is governed by a BSD-style license
4 # that can be found in the LICENSE file in the root of the source 4 # that can be found in the LICENSE file in the root of the source
5 # tree. An additional intellectual property rights grant can be found 5 # tree. An additional intellectual property rights grant can be found
6 # in the file PATENTS. All contributing project authors may 6 # in the file PATENTS. All contributing project authors may
7 # be found in the AUTHORS file in the root of the source tree. 7 # be found in the AUTHORS file in the root of the source tree.
8 8
9 import("//build/dotfile_settings.gni") 9 import("//build/dotfile_settings.gni")
10 10
(...skipping 12 matching lines...) Expand all
23 # TODO(kjellander): Keep adding paths to this list as work in webrtc:5589 is don e. 23 # TODO(kjellander): Keep adding paths to this list as work in webrtc:5589 is don e.
24 check_targets = [ 24 check_targets = [
25 "//webrtc/api/*", 25 "//webrtc/api/*",
26 "//webrtc/audio/*", 26 "//webrtc/audio/*",
27 "//webrtc/modules/audio_coding/*", 27 "//webrtc/modules/audio_coding/*",
28 "//webrtc/modules/audio_device/*", 28 "//webrtc/modules/audio_device/*",
29 "//webrtc/modules/audio_mixer/*", 29 "//webrtc/modules/audio_mixer/*",
30 "//webrtc/stats:rtc_stats", 30 "//webrtc/stats:rtc_stats",
31 "//webrtc/voice_engine", 31 "//webrtc/voice_engine",
32 "//webrtc/voice_engine:level_indicator", 32 "//webrtc/voice_engine:level_indicator",
33 "//webrtc/*",
kjellander_webrtc 2016/12/08 11:57:23 I assume this shouldn't be here?
33 ] 34 ]
34 35
35 # These are the list of GN files that run exec_script. This whitelist exists 36 # These are the list of GN files that run exec_script. This whitelist exists
36 # to force additional review for new uses of exec_script, which is strongly 37 # to force additional review for new uses of exec_script, which is strongly
37 # discouraged except for gypi_to_gn calls. 38 # discouraged except for gypi_to_gn calls.
38 exec_script_whitelist = build_dotfile_settings.exec_script_whitelist + [ 39 exec_script_whitelist = build_dotfile_settings.exec_script_whitelist + [
39 "//third_party/boringssl/BUILD.gn", 40 "//third_party/boringssl/BUILD.gn",
40 "//third_party/openh264/BUILD.gn", 41 "//third_party/openh264/BUILD.gn",
41 "//third_party/opus/BUILD.gn", 42 "//third_party/opus/BUILD.gn",
42 "//webrtc/modules/video_render/BUILD.gn", 43 "//webrtc/modules/video_render/BUILD.gn",
43 ] 44 ]
OLDNEW
« no previous file with comments | « no previous file | tools/gn_check_autofix.py » ('j') | tools/gn_check_autofix.py » ('J')

Powered by Google App Engine
This is Rietveld 408576698