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

Side by Side Diff: chrome/renderer/BUILD.gn

Issue 960413003: Apply gn format with 'sources' sorting to src/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-format-sort-2
Patch Set: . Created 5 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
OLDNEW
1 # Copyright 2014 The Chromium Authors. All rights reserved. 1 # Copyright 2014 The Chromium Authors. All rights reserved.
2 # Use of this source code is governed by a BSD-style license that can be 2 # Use of this source code is governed by a BSD-style license that can be
3 # found in the LICENSE file. 3 # found in the LICENSE file.
4 4
5 import("//build/config/features.gni") 5 import("//build/config/features.gni")
6 import("//tools/grit/grit_rule.gni") 6 import("//tools/grit/grit_rule.gni")
7 7
8 gypi_values = exec_script("//build/gypi_to_gn.py", 8 gypi_values = exec_script("//build/gypi_to_gn.py",
9 [ rebase_path("../chrome_renderer.gypi") ], 9 [ rebase_path("../chrome_renderer.gypi") ],
10 "scope", 10 "scope",
(...skipping 104 matching lines...) Expand 10 before | Expand all | Expand 10 after
115 "//chrome/common/extensions/api", 115 "//chrome/common/extensions/api",
116 "//extensions:extensions_resources", 116 "//extensions:extensions_resources",
117 "//extensions/renderer", 117 "//extensions/renderer",
118 "//media/cast:net", 118 "//media/cast:net",
119 "//media/cast:receiver", 119 "//media/cast:receiver",
120 "//media/cast:sender", 120 "//media/cast:sender",
121 "//media/cast/logging/proto", 121 "//media/cast/logging/proto",
122 ] 122 ]
123 if (!enable_webrtc) { 123 if (!enable_webrtc) {
124 sources -= [ 124 sources -= [
125 "media/cast_receiver_session.cc",
126 "media/cast_receiver_session.h",
125 "media/cast_rtp_stream.cc", 127 "media/cast_rtp_stream.cc",
126 "media/cast_rtp_stream.h", 128 "media/cast_rtp_stream.h",
127 "media/cast_receiver_session.cc",
128 "media/cast_receiver_session.h",
129 ] 129 ]
130 } 130 }
131 } 131 }
132 if (enable_webrtc) { 132 if (enable_webrtc) {
133 sources += 133 sources +=
134 rebase_path(gypi_values.chrome_renderer_webrtc_sources, ".", "..") 134 rebase_path(gypi_values.chrome_renderer_webrtc_sources, ".", "..")
135 } 135 }
136 if (enable_extensions && enable_webrtc) { 136 if (enable_extensions && enable_webrtc) {
137 sources += 137 sources +=
138 rebase_path(gypi_values.chrome_renderer_webrtc_extensions_sources, 138 rebase_path(gypi_values.chrome_renderer_webrtc_extensions_sources,
(...skipping 57 matching lines...) Expand 10 before | Expand all | Expand 10 after
196 deps += [ "//chrome/service" ] 196 deps += [ "//chrome/service" ]
197 } 197 }
198 198
199 if (enable_webrtc) { 199 if (enable_webrtc) {
200 sources += [ 200 sources += [
201 "media/mock_webrtc_logging_message_filter.cc", 201 "media/mock_webrtc_logging_message_filter.cc",
202 "media/mock_webrtc_logging_message_filter.h", 202 "media/mock_webrtc_logging_message_filter.h",
203 ] 203 ]
204 } 204 }
205 } 205 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698