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

Side by Side Diff: chrome/browser/BUILD.gn

Issue 2098713003: Moved a bunch of win-specific files to the new win folder in chrome/browser (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Rebase Created 4 years, 5 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
« no previous file with comments | « chrome/app/chrome_exe_main_win.cc ('k') | chrome/browser/OWNERS » ('j') | no next file with comments »
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/crypto.gni") 6 import("//build/config/crypto.gni")
7 import("//build/config/features.gni") 7 import("//build/config/features.gni")
8 import("//build/config/ui.gni") 8 import("//build/config/ui.gni")
9 import("//chrome/common/features.gni") 9 import("//chrome/common/features.gni")
10 import("//media/media_options.gni") 10 import("//media/media_options.gni")
(...skipping 979 matching lines...) Expand 10 before | Expand all | Expand 10 after
990 proto_library("delta_file_proto") { 990 proto_library("delta_file_proto") {
991 sources = [ 991 sources = [
992 "android/proto/delta_file.proto", 992 "android/proto/delta_file.proto",
993 ] 993 ]
994 } 994 }
995 } 995 }
996 996
997 if (is_win) { 997 if (is_win) {
998 source_set("chrome_process_finder") { 998 source_set("chrome_process_finder") {
999 sources = [ 999 sources = [
1000 "chrome_process_finder_win.cc", 1000 "win/chrome_process_finder.cc",
1001 "chrome_process_finder_win.h", 1001 "win/chrome_process_finder.h",
1002 ] 1002 ]
1003 deps = [ 1003 deps = [
1004 "//base", 1004 "//base",
1005 "//chrome/common:constants", 1005 "//chrome/common:constants",
1006 ] 1006 ]
1007 if (enable_configuration_policy) { 1007 if (enable_configuration_policy) {
1008 deps += [ "//chrome/browser/policy:path_parser" ] 1008 deps += [ "//chrome/browser/policy:path_parser" ]
1009 } 1009 }
1010 } 1010 }
1011 } 1011 }
(...skipping 353 matching lines...) Expand 10 before | Expand all | Expand 10 after
1365 # linking all of the test support. 1365 # linking all of the test support.
1366 source_set("pepper_cdm_test_constants") { 1366 source_set("pepper_cdm_test_constants") {
1367 testonly = true 1367 testonly = true
1368 visibility = [ "//chrome/*" ] 1368 visibility = [ "//chrome/*" ]
1369 sources = [ 1369 sources = [
1370 "media/pepper_cdm_test_constants.cc", 1370 "media/pepper_cdm_test_constants.cc",
1371 "media/pepper_cdm_test_constants.h", 1371 "media/pepper_cdm_test_constants.h",
1372 ] 1372 ]
1373 } 1373 }
1374 } 1374 }
OLDNEW
« no previous file with comments | « chrome/app/chrome_exe_main_win.cc ('k') | chrome/browser/OWNERS » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698