| 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("//tools/grit/grit_rule.gni") | 5 import("//tools/grit/grit_rule.gni") |
| 6 | 6 |
| 7 gypi_values = exec_script( | 7 gypi_values = exec_script( |
| 8 "//build/gypi_to_gn.py", | 8 "//build/gypi_to_gn.py", |
| 9 [ rebase_path("../chrome_common.gypi") ], | 9 [ rebase_path("../chrome_common.gypi") ], |
| 10 "scope", | 10 "scope", |
| (...skipping 191 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 202 sources -= [ | 202 sources -= [ |
| 203 "chrome_version_info_posix.cc", | 203 "chrome_version_info_posix.cc", |
| 204 ] | 204 ] |
| 205 deps += [ | 205 deps += [ |
| 206 "//third_party/mach_override", | 206 "//third_party/mach_override", |
| 207 "//third_party/google_toolbox_for_mac", | 207 "//third_party/google_toolbox_for_mac", |
| 208 ] | 208 ] |
| 209 } | 209 } |
| 210 | 210 |
| 211 if (enable_remoting) { | 211 if (enable_remoting) { |
| 212 #deps += [ '../remoting/remoting.gyp:remoting_client_plugin' ] TODO(GYP) | 212 deps += [ "//remoting/client/plugin" ] |
| 213 } | 213 } |
| 214 if (!enable_plugins) { | 214 if (!enable_plugins) { |
| 215 sources -= [ "pepper_permission_util.cc" ] | 215 sources -= [ "pepper_permission_util.cc" ] |
| 216 } | 216 } |
| 217 if (!enable_webrtc) { | 217 if (!enable_webrtc) { |
| 218 sources -= [ "media/webrtc_logging_messages.h" ] | 218 sources -= [ "media/webrtc_logging_messages.h" ] |
| 219 } | 219 } |
| 220 if (enable_configuration_policy) { | 220 if (enable_configuration_policy) { |
| 221 deps += [ "//components/policy" ] | 221 deps += [ "//components/policy" ] |
| 222 } | 222 } |
| (...skipping 58 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 281 "//components/bookmarks/common", | 281 "//components/bookmarks/common", |
| 282 "//third_party/widevine/cdm:version_h", | 282 "//third_party/widevine/cdm:version_h", |
| 283 ] | 283 ] |
| 284 | 284 |
| 285 if (enable_nacl) { | 285 if (enable_nacl) { |
| 286 deps += [ | 286 deps += [ |
| 287 #'../components/nacl.gyp:nacl_switches', TODO(GYP) | 287 #'../components/nacl.gyp:nacl_switches', TODO(GYP) |
| 288 ] | 288 ] |
| 289 } | 289 } |
| 290 } | 290 } |
| OLD | NEW |