| 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 368 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 379 if (!is_chromeos) { | 379 if (!is_chromeos) { |
| 380 configs += [ "//build/config/linux:xscrnsaver" ] | 380 configs += [ "//build/config/linux:xscrnsaver" ] |
| 381 } | 381 } |
| 382 } | 382 } |
| 383 if (is_posix && !is_mac && !is_ios) { | 383 if (is_posix && !is_mac && !is_ios) { |
| 384 sources += [ | 384 sources += [ |
| 385 "//chrome/app/chrome_breakpad_client.cc", | 385 "//chrome/app/chrome_breakpad_client.cc", |
| 386 "//chrome/app/chrome_breakpad_client.h", | 386 "//chrome/app/chrome_breakpad_client.h", |
| 387 ] | 387 ] |
| 388 deps += [ | 388 deps += [ |
| 389 "//components/breakpad/app", | 389 "//components/crash/app", |
| 390 "//components/breakpad/browser", | 390 "//components/crash/browser", |
| 391 ] | 391 ] |
| 392 } | 392 } |
| 393 if (use_nss_certs) { | 393 if (use_nss_certs) { |
| 394 sources += rebase_path(gypi_values.chrome_browser_nss_sources, | 394 sources += rebase_path(gypi_values.chrome_browser_nss_sources, |
| 395 ".", "//chrome") | 395 ".", "//chrome") |
| 396 } | 396 } |
| 397 if (enable_notifications) { | 397 if (enable_notifications) { |
| 398 sources += rebase_path(gypi_values.chrome_browser_notifications_sources, | 398 sources += rebase_path(gypi_values.chrome_browser_notifications_sources, |
| 399 ".", "//chrome") | 399 ".", "//chrome") |
| 400 if (!is_android) { | 400 if (!is_android) { |
| (...skipping 258 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 |