| 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 69 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 80 # Use this Mac file that was filtered out. | 80 # Use this Mac file that was filtered out. |
| 81 "chrome_version_info_mac.mm", | 81 "chrome_version_info_mac.mm", |
| 82 ] | 82 ] |
| 83 } else { | 83 } else { |
| 84 # Non-iOS. | 84 # Non-iOS. |
| 85 deps += [ | 85 deps += [ |
| 86 "//chrome/common/extensions/api", | 86 "//chrome/common/extensions/api", |
| 87 "//components/visitedlink/common", | 87 "//components/visitedlink/common", |
| 88 "//components/autofill/content/common", | 88 "//components/autofill/content/common", |
| 89 "//components/autofill/core/common", | 89 "//components/autofill/core/common", |
| 90 "//components/password_manager/content/common", |
| 90 "//components/password_manager/core/common", | 91 "//components/password_manager/core/common", |
| 91 "//components/signin/core/common", | 92 "//components/signin/core/common", |
| 92 "//components/translate/content/common", | 93 "//components/translate/content/common", |
| 93 "//extensions/common/api", | 94 "//extensions/common/api", |
| 94 "//ipc", | 95 "//ipc", |
| 95 "//third_party/adobe/flash:flapper_version_h", | 96 "//third_party/adobe/flash:flapper_version_h", |
| 96 "//third_party/re2", | 97 "//third_party/re2", |
| 97 "//third_party/widevine/cdm:version_h", | 98 "//third_party/widevine/cdm:version_h", |
| 98 #'<(DEPTH)/extensions/extensions.gyp:extensions_common', TODO(GYP) | 99 #'<(DEPTH)/extensions/extensions.gyp:extensions_common', TODO(GYP) |
| 99 ] | 100 ] |
| (...skipping 203 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 303 "//components/bookmarks/common", | 304 "//components/bookmarks/common", |
| 304 "//third_party/widevine/cdm:version_h", | 305 "//third_party/widevine/cdm:version_h", |
| 305 ] | 306 ] |
| 306 | 307 |
| 307 if (enable_nacl) { | 308 if (enable_nacl) { |
| 308 deps += [ | 309 deps += [ |
| 309 #'../components/nacl.gyp:nacl_switches', TODO(GYP) | 310 #'../components/nacl.gyp:nacl_switches', TODO(GYP) |
| 310 ] | 311 ] |
| 311 } | 312 } |
| 312 } | 313 } |
| OLD | NEW |