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

Side by Side Diff: .gn

Issue 2727253003: Revert of Enable GN check for webrtc/examples (Closed)
Patch Set: Created 3 years, 9 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 | webrtc/examples/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) 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
11 # The location of the build configuration file. 11 # The location of the build configuration file.
12 buildconfig = "//build/config/BUILDCONFIG.gn" 12 buildconfig = "//build/config/BUILDCONFIG.gn"
13 13
14 # The secondary source root is a parallel directory tree where 14 # The secondary source root is a parallel directory tree where
15 # GN build files are placed when they can not be placed directly 15 # GN build files are placed when they can not be placed directly
16 # in the source tree, e.g. for third party source trees. 16 # in the source tree, e.g. for third party source trees.
17 secondary_source = "//build/secondary/" 17 secondary_source = "//build/secondary/"
18 18
19 # These are the targets to check headers for by default. The files in targets 19 # These are the targets to check headers for by default. The files in targets
20 # matching these patterns (see "gn help label_pattern" for format) will have 20 # matching these patterns (see "gn help label_pattern" for format) will have
21 # their includes checked for proper dependencies when you run either 21 # their includes checked for proper dependencies when you run either
22 # "gn check" or "gn gen --check". 22 # "gn check" or "gn gen --check".
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/call/*", 27 "//webrtc/call/*",
28 "//webrtc/common_video/*", 28 "//webrtc/common_video/*",
29 "//webrtc/common_audio/*", 29 "//webrtc/common_audio/*",
30 "//webrtc/examples/*",
31 "//webrtc/modules/audio_coding/*", 30 "//webrtc/modules/audio_coding/*",
32 "//webrtc/modules/audio_conference_mixer/*", 31 "//webrtc/modules/audio_conference_mixer/*",
33 "//webrtc/modules/audio_device/*", 32 "//webrtc/modules/audio_device/*",
34 "//webrtc/modules/audio_mixer/*", 33 "//webrtc/modules/audio_mixer/*",
35 "//webrtc/modules/audio_processing/*", 34 "//webrtc/modules/audio_processing/*",
36 "//webrtc/modules/bitrate_controller/*", 35 "//webrtc/modules/bitrate_controller/*",
37 "//webrtc/modules/congestion_controller/*", 36 "//webrtc/modules/congestion_controller/*",
38 "//webrtc/modules/desktop_capture/*", 37 "//webrtc/modules/desktop_capture/*",
39 "//webrtc/modules/media_file/*", 38 "//webrtc/modules/media_file/*",
40 "//webrtc/modules/pacing/*", 39 "//webrtc/modules/pacing/*",
41 "//webrtc/modules/rtp_rtcp/*", 40 "//webrtc/modules/rtp_rtcp/*",
42 "//webrtc/modules/utility/*", 41 "//webrtc/modules/utility/*",
43 "//webrtc/modules/video_capture/*", 42 "//webrtc/modules/video_capture/*",
44 "//webrtc/modules/video_coding/*", 43 "//webrtc/modules/video_coding/*",
45 "//webrtc/modules/video_processing/*", 44 "//webrtc/modules/video_processing/*",
46 "//webrtc/modules/remote_bitrate_estimator/*", 45 "//webrtc/modules/remote_bitrate_estimator/*",
47 "//webrtc/stats/*", 46 "//webrtc/stats/*",
48 "//webrtc/voice_engine", 47 "//webrtc/voice_engine",
49 "//webrtc/voice_engine:audio_coder", 48 "//webrtc/voice_engine:audio_coder",
50 "//webrtc/voice_engine:file_player", 49 "//webrtc/voice_engine:file_player",
51 "//webrtc/voice_engine:file_recorder", 50 "//webrtc/voice_engine:file_recorder",
52 "//webrtc/voice_engine:level_indicator", 51 "//webrtc/voice_engine:level_indicator",
53 ] 52 ]
54 53
55 # These are the list of GN files that run exec_script. This whitelist exists 54 # These are the list of GN files that run exec_script. This whitelist exists
56 # to force additional review for new uses of exec_script, which is strongly 55 # to force additional review for new uses of exec_script, which is strongly
57 # discouraged except for gypi_to_gn calls. 56 # discouraged except for gypi_to_gn calls.
58 exec_script_whitelist = build_dotfile_settings.exec_script_whitelist 57 exec_script_whitelist = build_dotfile_settings.exec_script_whitelist
OLDNEW
« no previous file with comments | « no previous file | webrtc/examples/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698