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

Side by Side Diff: chrome_elf/BUILD.gn

Issue 960413003: Apply gn format with 'sources' sorting to src/ (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@gn-format-sort-2
Patch Set: . Created 5 years, 9 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 2015 The Chromium Authors. All rights reserved. 1 # Copyright 2015 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("//chrome/version.gni") 5 import("//chrome/version.gni")
6 import("//testing/test.gni") 6 import("//testing/test.gni")
7 7
8 process_version("chrome_elf_resources") { 8 process_version("chrome_elf_resources") {
9 sources = [ 9 sources = [
10 "chrome_elf.ver", 10 "chrome_elf.ver",
11 ] 11 ]
12 output = "$target_gen_dir/chrome_elf_version.rc" 12 output = "$target_gen_dir/chrome_elf_version.rc"
13 } 13 }
14 14
15 shared_library("chrome_elf") { 15 shared_library("chrome_elf") {
16 sources = [ 16 sources = [
17 "$target_gen_dir/chrome_elf_version.rc",
17 "chrome_elf_main.cc", 18 "chrome_elf_main.cc",
18 "chrome_elf_main.h", 19 "chrome_elf_main.h",
19 "$target_gen_dir/chrome_elf_version.rc",
20 ] 20 ]
21 deps = [ 21 deps = [
22 ":blacklist", 22 ":blacklist",
23 ":breakpad", 23 ":breakpad",
24 ":lib", 24 ":lib",
25 ":chrome_elf_resources", 25 ":chrome_elf_resources",
26 ] 26 ]
27 configs += [ "//build/config/win:windowed" ] 27 configs += [ "//build/config/win:windowed" ]
28 configs -= [ "//build/config/win:console" ] 28 configs -= [ "//build/config/win:console" ]
29 ldflags = [ 29 ldflags = [
(...skipping 164 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 ] 194 ]
195 ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_2.def", 195 ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_2.def",
196 root_build_dir) ] 196 root_build_dir) ]
197 } 197 }
198 198
199 shared_library("blacklist_test_dll_3") { 199 shared_library("blacklist_test_dll_3") {
200 sources = [ 200 sources = [
201 "blacklist/test/blacklist_test_dll_3.cc", 201 "blacklist/test/blacklist_test_dll_3.cc",
202 ] 202 ]
203 } 203 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698