| 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/features.gni") | 6 import("//build/config/features.gni") |
| 7 import("//build/config/locales.gni") | 7 import("//build/config/locales.gni") |
| 8 import("//build/config/ui.gni") | 8 import("//build/config/ui.gni") |
| 9 import("//chrome/chrome_repack_locales.gni") | 9 import("//chrome/chrome_repack_locales.gni") |
| 10 import("//chrome/version.gni") | 10 import("//chrome/version.gni") |
| (...skipping 407 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 418 "//chrome/browser/resources:translate_internals_resources", | 418 "//chrome/browser/resources:translate_internals_resources", |
| 419 ] | 419 ] |
| 420 if (!is_ios) { | 420 if (!is_ios) { |
| 421 deps += [ | 421 deps += [ |
| 422 "//chrome/browser/resources:component_extension_resources", | 422 "//chrome/browser/resources:component_extension_resources", |
| 423 "//chrome/browser/resources:options_resources", | 423 "//chrome/browser/resources:options_resources", |
| 424 "//chrome/browser/resources:settings_resources", | 424 "//chrome/browser/resources:settings_resources", |
| 425 ] | 425 ] |
| 426 } | 426 } |
| 427 | 427 |
| 428 if (enable_chromevox_next) { | 428 if (is_chromeos) { |
| 429 deps += [ | 429 deps += [ "//chrome/browser/resources/chromeos/chromevox" ] |
| 430 #'browser/resources/chromeos/chromevox2/chromevox.gyp:chromevox2', TODO(G
YP) | |
| 431 ] | |
| 432 } else { | |
| 433 deps += [ | |
| 434 #'browser/resources/chromeos/chromevox/chromevox.gyp:chromevox', TODO(GYP
) | |
| 435 ] | |
| 436 } | 430 } |
| 437 | 431 |
| 438 if (enable_extensions) { | 432 if (enable_extensions) { |
| 439 deps += [ | 433 deps += [ |
| 440 "//chrome/browser/resources:quota_internals_resources", | 434 "//chrome/browser/resources:quota_internals_resources", |
| 441 "//chrome/browser/resources:sync_file_system_internals_resources", | 435 "//chrome/browser/resources:sync_file_system_internals_resources", |
| 442 ] | 436 ] |
| 443 } | 437 } |
| 444 } | 438 } |
| 445 | 439 |
| (...skipping 356 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 802 | 796 |
| 803 args = [ | 797 args = [ |
| 804 rebase_path(infile, root_build_dir), | 798 rebase_path(infile, root_build_dir), |
| 805 rebase_path(outfile, root_build_dir), | 799 rebase_path(outfile, root_build_dir), |
| 806 "-e s/@@NAME@@/$name/", | 800 "-e s/@@NAME@@/$name/", |
| 807 "-e s/@@FILENAME@@/$filename/", | 801 "-e s/@@FILENAME@@/$filename/", |
| 808 "-e s/@@CONFDIR@@/$confdir/", | 802 "-e s/@@CONFDIR@@/$confdir/", |
| 809 ] | 803 ] |
| 810 } | 804 } |
| 811 } | 805 } |
| OLD | NEW |