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

Side by Side Diff: chrome/BUILD.gn

Issue 1412673006: Transform ImagePreReader into PreReadFile. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@a_get_module_path
Patch Set: git cl format Created 5 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
« no previous file with comments | « no previous file | chrome/app/file_pre_reader_win.h » ('j') | chrome/app/file_pre_reader_win.h » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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/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/sanitizers/sanitizers.gni") 8 import("//build/config/sanitizers/sanitizers.gni")
9 import("//build/config/ui.gni") 9 import("//build/config/ui.gni")
10 import("//build/config/win/manifest.gni") 10 import("//build/config/win/manifest.gni")
(...skipping 106 matching lines...) Expand 10 before | Expand all | Expand 10 after
117 "app/signature_validator_win.cc", 117 "app/signature_validator_win.cc",
118 "app/signature_validator_win.h", 118 "app/signature_validator_win.h",
119 "common/crash_keys.cc", 119 "common/crash_keys.cc",
120 "common/crash_keys.h", 120 "common/crash_keys.h",
121 ] 121 ]
122 122
123 deps += [ 123 deps += [
124 ":chrome_dll", 124 ":chrome_dll",
125 ":chrome_exe_version", 125 ":chrome_exe_version",
126 ":client_util", 126 ":client_util",
127 ":image_pre_reader", 127 ":file_pre_reader",
128 128
129 # 'chrome_nacl_win64" TODO(GYP) bug 512869 129 # 'chrome_nacl_win64" TODO(GYP) bug 512869
130 # '../win8/delegate_execute/delegate_execute.gyp:*', TODO(GYP) bug 51286 7 130 # '../win8/delegate_execute/delegate_execute.gyp:*', TODO(GYP) bug 51286 7
131 # '../win8/metro_driver/metro_driver.gyp:metro_driver', TODO(GYP) bug 51 2864 131 # '../win8/metro_driver/metro_driver.gyp:metro_driver', TODO(GYP) bug 51 2864
132 "//base", 132 "//base",
133 "//breakpad:breakpad_handler", 133 "//breakpad:breakpad_handler",
134 "//breakpad:breakpad_sender", 134 "//breakpad:breakpad_sender",
135 "//chrome/app/version_assembly:chrome_exe_manifest", 135 "//chrome/app/version_assembly:chrome_exe_manifest",
136 "//chrome/browser:chrome_process_finder", 136 "//chrome/browser:chrome_process_finder",
137 "//chrome/chrome_watcher", 137 "//chrome/chrome_watcher",
(...skipping 383 matching lines...) Expand 10 before | Expand all | Expand 10 after
521 source_set("client_util") { 521 source_set("client_util") {
522 sources = [ 522 sources = [
523 "app/client_util.cc", 523 "app/client_util.cc",
524 "app/client_util.h", 524 "app/client_util.h",
525 ] 525 ]
526 deps = [ 526 deps = [
527 "//base", 527 "//base",
528 ] 528 ]
529 } 529 }
530 530
531 source_set("image_pre_reader") { 531 source_set("file_pre_reader") {
532 sources = [ 532 sources = [
533 "app/image_pre_reader_win.cc", 533 "app/file_pre_reader_win.cc",
534 "app/image_pre_reader_win.h", 534 "app/file_pre_reader_win.h",
535 ] 535 ]
536 deps = [ 536 deps = [
537 "//base", 537 "//base",
538 ] 538 ]
539 } 539 }
540 } 540 }
541 541
542 # GYP version: chrome/chrome_resources.gyp:chrome_resources 542 # GYP version: chrome/chrome_resources.gyp:chrome_resources
543 group("resources") { 543 group("resources") {
544 public_deps = [ 544 public_deps = [
(...skipping 518 matching lines...) Expand 10 before | Expand all | Expand 10 after
1063 "//chrome/app/theme/$branding_path_component/product_logo_48.png", 1063 "//chrome/app/theme/$branding_path_component/product_logo_48.png",
1064 "//chrome/tools/build/linux/chrome-wrapper", 1064 "//chrome/tools/build/linux/chrome-wrapper",
1065 "//third_party/xdg-utils/scripts/xdg-mime", 1065 "//third_party/xdg-utils/scripts/xdg-mime",
1066 "//third_party/xdg-utils/scripts/xdg-settings", 1066 "//third_party/xdg-utils/scripts/xdg-settings",
1067 ] 1067 ]
1068 outputs = [ 1068 outputs = [
1069 "$root_out_dir/{{source_file_part}}", 1069 "$root_out_dir/{{source_file_part}}",
1070 ] 1070 ]
1071 } 1071 }
1072 } 1072 }
OLDNEW
« no previous file with comments | « no previous file | chrome/app/file_pre_reader_win.h » ('j') | chrome/app/file_pre_reader_win.h » ('J')

Powered by Google App Engine
This is Rietveld 408576698