OLD | NEW |
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 Loading... |
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 Loading... |
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 } |
OLD | NEW |