| 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/chrome_build.gni") | 5 import("//build/config/chrome_build.gni") |
| 6 import("//build/config/crypto.gni") | 6 import("//build/config/crypto.gni") |
| 7 import("//build/config/features.gni") | 7 import("//build/config/features.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//third_party/protobuf/proto_library.gni") | 9 import("//third_party/protobuf/proto_library.gni") |
| 10 | 10 |
| (...skipping 570 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 581 rebase_path(gypi_values.chrome_browser_themes_sources, ".", "//chrome") | 581 rebase_path(gypi_values.chrome_browser_themes_sources, ".", "//chrome") |
| 582 } | 582 } |
| 583 | 583 |
| 584 if (enable_basic_printing || enable_print_preview) { | 584 if (enable_basic_printing || enable_print_preview) { |
| 585 # Some form of printing support. | 585 # Some form of printing support. |
| 586 sources += rebase_path(gypi_values.chrome_browser_printing_basic_sources, | 586 sources += rebase_path(gypi_values.chrome_browser_printing_basic_sources, |
| 587 ".", | 587 ".", |
| 588 "//chrome") | 588 "//chrome") |
| 589 deps += [ | 589 deps += [ |
| 590 "//printing", | 590 "//printing", |
| 591 "//components/printing/browser:printing_browser", | 591 "//components/printing/browser", |
| 592 ] | 592 ] |
| 593 | 593 |
| 594 if (is_win) { | 594 if (is_win) { |
| 595 sources += rebase_path(gypi_values.chrome_browser_printing_emf_sources, | 595 sources += rebase_path(gypi_values.chrome_browser_printing_emf_sources, |
| 596 ".", | 596 ".", |
| 597 "//chrome") | 597 "//chrome") |
| 598 } | 598 } |
| 599 if (enable_print_preview) { | 599 if (enable_print_preview) { |
| 600 # Full printing on top of the above. | 600 # Full printing on top of the above. |
| 601 sources += rebase_path(gypi_values.chrome_browser_printing_full_sources, | 601 sources += rebase_path(gypi_values.chrome_browser_printing_full_sources, |
| (...skipping 617 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1219 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") | 1219 rebase_path(gypi_values.chrome_browser_rlz_sources, ".", "//chrome") |
| 1220 deps = [ | 1220 deps = [ |
| 1221 "//components/google/core/browser", | 1221 "//components/google/core/browser", |
| 1222 "//components/omnibox/browser", | 1222 "//components/omnibox/browser", |
| 1223 "//components/rlz", | 1223 "//components/rlz", |
| 1224 "//components/search_engines", | 1224 "//components/search_engines", |
| 1225 "//rlz:rlz_lib", | 1225 "//rlz:rlz_lib", |
| 1226 ] | 1226 ] |
| 1227 } | 1227 } |
| 1228 } | 1228 } |
| OLD | NEW |