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 134 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
145 ".", | 145 ".", |
146 "..") | 146 "..") |
147 } | 147 } |
148 } | 148 } |
149 | 149 |
150 if (is_mac) { | 150 if (is_mac) { |
151 deps += [ "//third_party/mach_override" ] | 151 deps += [ "//third_party/mach_override" ] |
152 } | 152 } |
153 if (is_win) { | 153 if (is_win) { |
154 deps += [ | 154 deps += [ |
155 #'../chrome_elf/chrome_elf.gyp:chrome_elf', TODO(GYP) | 155 "//chrome_elf", |
156 "//third_party/wtl", | 156 "//third_party/wtl", |
157 ] | 157 ] |
158 } | 158 } |
159 if (!is_android) { | 159 if (!is_android) { |
160 sources += | 160 sources += |
161 rebase_path(gypi_values.chrome_renderer_non_android_sources, ".", "..") | 161 rebase_path(gypi_values.chrome_renderer_non_android_sources, ".", "..") |
162 } | 162 } |
163 } | 163 } |
164 | 164 |
165 # In GYP this is part of test_support_common. | 165 # In GYP this is part of test_support_common. |
(...skipping 27 matching lines...) Expand all Loading... |
193 ] | 193 ] |
194 } | 194 } |
195 | 195 |
196 if (enable_webrtc) { | 196 if (enable_webrtc) { |
197 sources += [ | 197 sources += [ |
198 "media/mock_webrtc_logging_message_filter.cc", | 198 "media/mock_webrtc_logging_message_filter.cc", |
199 "media/mock_webrtc_logging_message_filter.h", | 199 "media/mock_webrtc_logging_message_filter.h", |
200 ] | 200 ] |
201 } | 201 } |
202 } | 202 } |
OLD | NEW |