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 370 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
381 if (!is_chromeos) { | 381 if (!is_chromeos) { |
382 configs += [ "//build/config/linux:xscrnsaver" ] | 382 configs += [ "//build/config/linux:xscrnsaver" ] |
383 } | 383 } |
384 } | 384 } |
385 if (is_posix && !is_mac && !is_ios) { | 385 if (is_posix && !is_mac && !is_ios) { |
386 sources += [ | 386 sources += [ |
387 "//chrome/app/chrome_breakpad_client.cc", | 387 "//chrome/app/chrome_breakpad_client.cc", |
388 "//chrome/app/chrome_breakpad_client.h", | 388 "//chrome/app/chrome_breakpad_client.h", |
389 ] | 389 ] |
390 deps += [ | 390 deps += [ |
391 "//components/breakpad/app", | 391 "//components/crash/app", |
392 "//components/breakpad/browser", | 392 "//components/crash/browser", |
393 ] | 393 ] |
394 } | 394 } |
395 if (use_nss_certs) { | 395 if (use_nss_certs) { |
396 sources += rebase_path(gypi_values.chrome_browser_nss_sources, | 396 sources += rebase_path(gypi_values.chrome_browser_nss_sources, |
397 ".", "//chrome") | 397 ".", "//chrome") |
398 } | 398 } |
399 if (enable_notifications) { | 399 if (enable_notifications) { |
400 sources += rebase_path(gypi_values.chrome_browser_notifications_sources, | 400 sources += rebase_path(gypi_values.chrome_browser_notifications_sources, |
401 ".", "//chrome") | 401 ".", "//chrome") |
402 if (!is_android) { | 402 if (!is_android) { |
(...skipping 258 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
661 # TODO(GYP) write internal action | 661 # TODO(GYP) write internal action |
662 if (false) { #if (is_chrome_branded) { | 662 if (false) { #if (is_chrome_branded) { |
663 action("chrome_internal_resources_gen") { | 663 action("chrome_internal_resources_gen") { |
664 # TODO(GYP) | 664 # TODO(GYP) |
665 } | 665 } |
666 } else { | 666 } else { |
667 group("chrome_internal_resources_gen") { | 667 group("chrome_internal_resources_gen") { |
668 # Empty placeholder. | 668 # Empty placeholder. |
669 } | 669 } |
670 } | 670 } |
OLD | NEW |