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

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

Issue 832583007: Add GN files for chrome_elf (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Fix issues after review. Created 5 years, 11 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 | « chrome/browser/BUILD.gn ('k') | chrome_elf/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 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 140 matching lines...) Expand 10 before | Expand all | Expand 10 after
151 ".", 151 ".",
152 "..") 152 "..")
153 } 153 }
154 } 154 }
155 155
156 if (is_mac) { 156 if (is_mac) {
157 deps += [ "//third_party/mach_override" ] 157 deps += [ "//third_party/mach_override" ]
158 } 158 }
159 if (is_win) { 159 if (is_win) {
160 deps += [ 160 deps += [
161 #'../chrome_elf/chrome_elf.gyp:chrome_elf', TODO(GYP) 161 "//chrome_elf",
162 "//third_party/wtl", 162 "//third_party/wtl",
163 ] 163 ]
164 } 164 }
165 if (!is_android) { 165 if (!is_android) {
166 sources += 166 sources +=
167 rebase_path(gypi_values.chrome_renderer_non_android_sources, ".", "..") 167 rebase_path(gypi_values.chrome_renderer_non_android_sources, ".", "..")
168 } 168 }
169 } 169 }
170 170
171 # In GYP this is part of test_support_common. 171 # In GYP this is part of test_support_common.
(...skipping 27 matching lines...) Expand all
199 ] 199 ]
200 } 200 }
201 201
202 if (enable_webrtc) { 202 if (enable_webrtc) {
203 sources += [ 203 sources += [
204 "media/mock_webrtc_logging_message_filter.cc", 204 "media/mock_webrtc_logging_message_filter.cc",
205 "media/mock_webrtc_logging_message_filter.h", 205 "media/mock_webrtc_logging_message_filter.h",
206 ] 206 ]
207 } 207 }
208 } 208 }
OLDNEW
« no previous file with comments | « chrome/browser/BUILD.gn ('k') | chrome_elf/BUILD.gn » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698