| 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("//build/gypi_to_gn.py", | 7 gypi_values = exec_script("//build/gypi_to_gn.py", |
| 8 [ rebase_path("../chrome_common.gypi") ], | 8 [ rebase_path("../chrome_common.gypi") ], |
| 9 "scope", | 9 "scope", |
| 10 [ "../chrome_common.gypi" ]) | 10 [ "../chrome_common.gypi" ]) |
| (...skipping 190 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 201 deps += [ | 201 deps += [ |
| 202 "//third_party/mach_override", | 202 "//third_party/mach_override", |
| 203 "//third_party/google_toolbox_for_mac", | 203 "//third_party/google_toolbox_for_mac", |
| 204 ] | 204 ] |
| 205 } | 205 } |
| 206 | 206 |
| 207 if (enable_plugins) { | 207 if (enable_plugins) { |
| 208 sources += [ | 208 sources += [ |
| 209 "pepper_flash.cc", | 209 "pepper_flash.cc", |
| 210 "pepper_flash.h", | 210 "pepper_flash.h", |
| 211 "ppapi_utils.cc", |
| 212 "ppapi_utils.h", |
| 211 ] | 213 ] |
| 212 deps += [ "//third_party/adobe/flash:flapper_version_h" ] | 214 deps += [ "//third_party/adobe/flash:flapper_version_h" ] |
| 213 } | 215 } |
| 214 if (enable_plugins && enable_extensions) { | 216 if (enable_plugins && enable_extensions) { |
| 215 sources += [ | 217 sources += [ |
| 216 "pepper_permission_util.cc", | 218 "pepper_permission_util.cc", |
| 217 "pepper_permission_util.h", | 219 "pepper_permission_util.h", |
| 218 ] | 220 ] |
| 219 } | 221 } |
| 220 if (!enable_webrtc) { | 222 if (!enable_webrtc) { |
| (...skipping 91 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 312 ] | 314 ] |
| 313 } | 315 } |
| 314 | 316 |
| 315 if (enable_extensions) { | 317 if (enable_extensions) { |
| 316 sources += [ | 318 sources += [ |
| 317 "extensions/extension_test_util.cc", | 319 "extensions/extension_test_util.cc", |
| 318 "extensions/extension_test_util.h", | 320 "extensions/extension_test_util.h", |
| 319 ] | 321 ] |
| 320 } | 322 } |
| 321 } | 323 } |
| OLD | NEW |