| 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/features.gni") | 5 import("//build/config/features.gni") |
| 6 import("//build/config/locales.gni") | 6 import("//build/config/locales.gni") |
| 7 import("//build/config/ui.gni") | 7 import("//build/config/ui.gni") |
| 8 import("//chrome/chrome_repack_locales.gni") | 8 import("//chrome/chrome_repack_locales.gni") |
| 9 import("//chrome/version.gni") | 9 import("//chrome/version.gni") |
| 10 | 10 |
| (...skipping 387 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 398 # GYP outputs the file in the gen/repack directory. On non-Mac/iOS platforms | 398 # GYP outputs the file in the gen/repack directory. On non-Mac/iOS platforms |
| 399 # it them copies it. This skipes the copy step and writes it to the final | 399 # it them copies it. This skipes the copy step and writes it to the final |
| 400 # location. | 400 # location. |
| 401 if (is_mac || is_ios) { | 401 if (is_mac || is_ios) { |
| 402 output = "$root_gen_dir/repack/resources.pak" | 402 output = "$root_gen_dir/repack/resources.pak" |
| 403 } else { | 403 } else { |
| 404 output = "$root_out_dir/resources.pak" | 404 output = "$root_out_dir/resources.pak" |
| 405 } | 405 } |
| 406 } | 406 } |
| 407 | 407 |
| 408 # GYP version: chrome/chrome_resources.gyp:browser_tests_pak |
| 409 repack("browser_tests_pak") { |
| 410 sources = [ |
| 411 "$root_gen_dir/chrome/options_test_resources.pak", |
| 412 ] |
| 413 output = "$root_out_dir/browser_tests.pak" |
| 414 } |
| 415 |
| 408 # Collects per-locale grit files from many sources into global per-locale files. | 416 # Collects per-locale grit files from many sources into global per-locale files. |
| 409 chrome_repack_locales("repack_locales_pack") { | 417 chrome_repack_locales("repack_locales_pack") { |
| 410 visibility = [ ":*" ] | 418 visibility = [ ":*" ] |
| 411 | 419 |
| 412 input_locales = locales | 420 input_locales = locales |
| 413 | 421 |
| 414 if (is_mac) { | 422 if (is_mac) { |
| 415 output_locales = locales_as_mac_outputs | 423 output_locales = locales_as_mac_outputs |
| 416 } else { | 424 } else { |
| 417 output_locales = locales | 425 output_locales = locales |
| (...skipping 166 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 584 "//chrome/browser/ui", | 592 "//chrome/browser/ui", |
| 585 "//chrome/plugin", | 593 "//chrome/plugin", |
| 586 "//chrome/renderer", | 594 "//chrome/renderer", |
| 587 "//chrome/utility", | 595 "//chrome/utility", |
| 588 "//components/enhanced_bookmarks", | 596 "//components/enhanced_bookmarks", |
| 589 "//content/public/app:browser", | 597 "//content/public/app:browser", |
| 590 ] | 598 ] |
| 591 } | 599 } |
| 592 | 600 |
| 593 } | 601 } |
| OLD | NEW |