Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(973)

Side by Side Diff: chrome/BUILD.gn

Issue 2216433004: Add skeleton for select-to-speak component extension. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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/buildflag_header.gni") 5 import("//build/buildflag_header.gni")
6 import("//build/config/chrome_build.gni") 6 import("//build/config/chrome_build.gni")
7 import("//build/config/compiler/compiler.gni") 7 import("//build/config/compiler/compiler.gni")
8 import("//build/config/features.gni") 8 import("//build/config/features.gni")
9 import("//build/config/locales.gni") 9 import("//build/config/locales.gni")
10 import("//build/config/sanitizers/sanitizers.gni") 10 import("//build/config/sanitizers/sanitizers.gni")
(...skipping 1293 matching lines...) Expand 10 before | Expand all | Expand 10 after
1304 "//chrome/browser/resources:net_internals_resources", 1304 "//chrome/browser/resources:net_internals_resources",
1305 "//chrome/browser/resources:options_resources", 1305 "//chrome/browser/resources:options_resources",
1306 "//chrome/browser/resources:password_manager_internals_resources", 1306 "//chrome/browser/resources:password_manager_internals_resources",
1307 "//chrome/browser/resources:policy_resources", 1307 "//chrome/browser/resources:policy_resources",
1308 "//chrome/browser/resources:settings_resources", 1308 "//chrome/browser/resources:settings_resources",
1309 "//chrome/browser/resources:translate_internals_resources", 1309 "//chrome/browser/resources:translate_internals_resources",
1310 ] 1310 ]
1311 1311
1312 if (is_chromeos) { 1312 if (is_chromeos) {
1313 public_deps += [ "//chrome/browser/resources/chromeos/chromevox" ] 1313 public_deps += [ "//chrome/browser/resources/chromeos/chromevox" ]
1314 public_deps += [ "//chrome/browser/resources/chromeos/select_to_speak" ]
1314 } 1315 }
1315 1316
1316 if (enable_extensions) { 1317 if (enable_extensions) {
1317 public_deps += [ 1318 public_deps += [
1318 "//chrome/browser/resources:quota_internals_resources", 1319 "//chrome/browser/resources:quota_internals_resources",
1319 "//chrome/browser/resources:sync_file_system_internals_resources", 1320 "//chrome/browser/resources:sync_file_system_internals_resources",
1320 ] 1321 ]
1321 } 1322 }
1322 } 1323 }
1323 1324
(...skipping 461 matching lines...) Expand 10 before | Expand all | Expand 10 after
1785 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1786 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1786 "//chrome/tools/build/linux/chrome-wrapper", 1787 "//chrome/tools/build/linux/chrome-wrapper",
1787 "//third_party/xdg-utils/scripts/xdg-mime", 1788 "//third_party/xdg-utils/scripts/xdg-mime",
1788 "//third_party/xdg-utils/scripts/xdg-settings", 1789 "//third_party/xdg-utils/scripts/xdg-settings",
1789 ] 1790 ]
1790 outputs = [ 1791 outputs = [
1791 "$root_out_dir/{{source_file_part}}", 1792 "$root_out_dir/{{source_file_part}}",
1792 ] 1793 ]
1793 } 1794 }
1794 } 1795 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698