| 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 146 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 157 "//components/visitedlink/common", | 157 "//components/visitedlink/common", |
| 158 "//components/web_modal", | 158 "//components/web_modal", |
| 159 "//media", | 159 "//media", |
| 160 "//media/cast:net", | 160 "//media/cast:net", |
| 161 "//mojo/environment:chromium", | 161 "//mojo/environment:chromium", |
| 162 "//mojo/public/cpp/bindings", | 162 "//mojo/public/cpp/bindings", |
| 163 "//mojo/public/js/bindings", | 163 "//mojo/public/js/bindings", |
| 164 "//mojo/system", | 164 "//mojo/system", |
| 165 "//net:net_with_v8", | 165 "//net:net_with_v8", |
| 166 "//third_party/WebKit/public:resources", | 166 "//third_party/WebKit/public:resources", |
| 167 "//third_party/adobe/flash:flapper_version_h", |
| 167 "//third_party/expat", | 168 "//third_party/expat", |
| 168 "//third_party/leveldatabase", | 169 "//third_party/leveldatabase", |
| 169 "//third_party/libaddressinput", | 170 "//third_party/libaddressinput", |
| 170 "//third_party/libyuv", | 171 "//third_party/libyuv", |
| 171 "//third_party/npapi", | 172 "//third_party/npapi", |
| 172 "//third_party/re2", | 173 "//third_party/re2", |
| 173 "//third_party/smhasher:cityhash", | 174 "//third_party/smhasher:cityhash", |
| 174 "//ui/gl", | 175 "//ui/gl", |
| 175 "//ui/surface", | 176 "//ui/surface", |
| 176 "//ui/web_dialogs", | 177 "//ui/web_dialogs", |
| (...skipping 119 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 296 # Configuration policy disabled. | 297 # Configuration policy disabled. |
| 297 sources += rebase_path(gypi_values.chrome_browser_policy_disabled_sources, | 298 sources += rebase_path(gypi_values.chrome_browser_policy_disabled_sources, |
| 298 ".", "//chrome") | 299 ".", "//chrome") |
| 299 } | 300 } |
| 300 | 301 |
| 301 if (enable_plugins) { | 302 if (enable_plugins) { |
| 302 sources += rebase_path(gypi_values.chrome_browser_plugins_sources, | 303 sources += rebase_path(gypi_values.chrome_browser_plugins_sources, |
| 303 ".", "//chrome") | 304 ".", "//chrome") |
| 304 deps += [ | 305 deps += [ |
| 305 "//ppapi:ppapi_ipc", | 306 "//ppapi:ppapi_ipc", |
| 306 "//third_party/adobe/flash:flapper_version_h", | |
| 307 ] | 307 ] |
| 308 } | 308 } |
| 309 if (safe_browsing_mode != 0) { | 309 if (safe_browsing_mode != 0) { |
| 310 sources += rebase_path( | 310 sources += rebase_path( |
| 311 gypi_values.chrome_browser_basic_safe_browsing_sources, | 311 gypi_values.chrome_browser_basic_safe_browsing_sources, |
| 312 ".", "//chrome") | 312 ".", "//chrome") |
| 313 deps += [ | 313 deps += [ |
| 314 "//chrome/browser/safe_browsing:chunk_proto", | 314 "//chrome/browser/safe_browsing:chunk_proto", |
| 315 "//chrome/browser/safe_browsing:report_proto", | 315 "//chrome/browser/safe_browsing:report_proto", |
| 316 ] | 316 ] |
| (...skipping 342 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 659 # TODO(GYP) write internal action | 659 # TODO(GYP) write internal action |
| 660 if (false) { #if (is_chrome_branded) { | 660 if (false) { #if (is_chrome_branded) { |
| 661 action("chrome_internal_resources_gen") { | 661 action("chrome_internal_resources_gen") { |
| 662 # TODO(GYP) | 662 # TODO(GYP) |
| 663 } | 663 } |
| 664 } else { | 664 } else { |
| 665 group("chrome_internal_resources_gen") { | 665 group("chrome_internal_resources_gen") { |
| 666 # Empty placeholder. | 666 # Empty placeholder. |
| 667 } | 667 } |
| 668 } | 668 } |
| OLD | NEW |