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

Side by Side Diff: chrome/BUILD.gn

Issue 683813004: Fewer focusable items in chrome://settings/searchEngines (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase, fix failing browser_tests, add .pak file to GN Created 6 years, 1 month 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/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
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
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 }
OLDNEW
« no previous file with comments | « no previous file | chrome/browser/resources/BUILD.gn » ('j') | chrome/browser/resources/options/autofill_options_list.js » ('J')

Powered by Google App Engine
This is Rietveld 408576698