| 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/crypto.gni") | 5 import("//build/config/crypto.gni") |
| 6 import("//build/config/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//components/nacl/nacl_defines.gni") | 8 import("//components/nacl/nacl_defines.gni") |
| 9 import("//tools/grit/grit_rule.gni") | 9 import("//tools/grit/grit_rule.gni") |
| 10 | 10 |
| (...skipping 163 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 174 "//third_party/libyuv", | 174 "//third_party/libyuv", |
| 175 "//third_party/npapi", | 175 "//third_party/npapi", |
| 176 "//third_party/re2", | 176 "//third_party/re2", |
| 177 "//third_party/smhasher:cityhash", | 177 "//third_party/smhasher:cityhash", |
| 178 "//ui/gl", | 178 "//ui/gl", |
| 179 "//ui/surface", | 179 "//ui/surface", |
| 180 "//ui/web_dialogs", | 180 "//ui/web_dialogs", |
| 181 "//v8", | 181 "//v8", |
| 182 "//webkit/browser:storage", | 182 "//webkit/browser:storage", |
| 183 "//webkit/common", | 183 "//webkit/common", |
| 184 "//webkit/common:storage", | 184 "//webkit/common:storage_common", |
| 185 ## TODO(tonyg): Remove this dependency (crbug.com/280157). | 185 ## TODO(tonyg): Remove this dependency (crbug.com/280157). |
| 186 #"../testing/perf/perf_test.gyp:*", TODO(GYP) | 186 #"../testing/perf/perf_test.gyp:*", TODO(GYP) |
| 187 # Note: for this one also remove the webrtc_stub_config | 187 # Note: for this one also remove the webrtc_stub_config |
| 188 #"../third_party/webrtc/modules/modules.gyp:desktop_capture", TODO(GYP) | 188 #"../third_party/webrtc/modules/modules.gyp:desktop_capture", TODO(GYP) |
| 189 ] | 189 ] |
| 190 } else { # iOS | 190 } else { # iOS |
| 191 sources += rebase_path(gypi_values.chrome_browser_ios_sources, | 191 sources += rebase_path(gypi_values.chrome_browser_ios_sources, |
| 192 ".", "//chrome") | 192 ".", "//chrome") |
| 193 deps += [ | 193 deps += [ |
| 194 "//net", | 194 "//net", |
| (...skipping 469 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 664 # TODO(GYP) write internal action | 664 # TODO(GYP) write internal action |
| 665 if (false) { #if (is_chrome_branded) { | 665 if (false) { #if (is_chrome_branded) { |
| 666 action("chrome_internal_resources_gen") { | 666 action("chrome_internal_resources_gen") { |
| 667 # TODO(GYP) | 667 # TODO(GYP) |
| 668 } | 668 } |
| 669 } else { | 669 } else { |
| 670 group("chrome_internal_resources_gen") { | 670 group("chrome_internal_resources_gen") { |
| 671 # Empty placeholder. | 671 # Empty placeholder. |
| 672 } | 672 } |
| 673 } | 673 } |
| OLD | NEW |