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 400 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
411 ".", "//chrome") | 411 ".", "//chrome") |
412 } | 412 } |
413 | 413 |
414 if (printing_mode != 0) { | 414 if (printing_mode != 0) { |
415 # Some form of printing support. | 415 # Some form of printing support. |
416 sources += rebase_path(gypi_values.chrome_browser_basic_printing_sources, | 416 sources += rebase_path(gypi_values.chrome_browser_basic_printing_sources, |
417 ".", "//chrome") | 417 ".", "//chrome") |
418 deps += [ | 418 deps += [ |
419 "//printing", | 419 "//printing", |
420 ] | 420 ] |
421 if (is_win && win_pdf_metafile_for_printing) { | 421 if (is_win) { |
422 sources += rebase_path(gypi_values.chrome_browser_printing_emf_sources, | 422 sources += rebase_path(gypi_values.chrome_browser_printing_emf_sources, |
423 ".", "//chrome") | 423 ".", "//chrome") |
424 } | 424 } |
425 if (printing_mode == 1) { | 425 if (printing_mode == 1) { |
426 # Full printing on top of the above. | 426 # Full printing on top of the above. |
427 sources += rebase_path(gypi_values.chrome_browser_full_printing_sources, | 427 sources += rebase_path(gypi_values.chrome_browser_full_printing_sources, |
428 ".", "//chrome") | 428 ".", "//chrome") |
429 } else if (printing_mode == 2) { | 429 } else if (printing_mode == 2) { |
430 # Partial-only printing support. | 430 # Partial-only printing support. |
431 sources += rebase_path( | 431 sources += rebase_path( |
(...skipping 230 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
662 # TODO(GYP) write internal action | 662 # TODO(GYP) write internal action |
663 if (false) { #if (is_chrome_branded) { | 663 if (false) { #if (is_chrome_branded) { |
664 action("chrome_internal_resources_gen") { | 664 action("chrome_internal_resources_gen") { |
665 # TODO(GYP) | 665 # TODO(GYP) |
666 } | 666 } |
667 } else { | 667 } else { |
668 group("chrome_internal_resources_gen") { | 668 group("chrome_internal_resources_gen") { |
669 # Empty placeholder. | 669 # Empty placeholder. |
670 } | 670 } |
671 } | 671 } |
OLD | NEW |