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

Side by Side Diff: chrome_elf/BUILD.gn

Issue 1311543003: Add Linux build packaging targets to GN (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 5 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 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("//build/config/win/manifest.gni") 5 import("//build/config/win/manifest.gni")
6 import("//chrome/version.gni") 6 import("//chrome/version.gni")
7 import("//testing/test.gni") 7 import("//testing/test.gni")
8 8
9 process_version("chrome_elf_resources") { 9 process_version("chrome_elf_resources") {
10 template_file = chrome_version_rc_template
10 sources = [ 11 sources = [
11 "chrome_elf.ver", 12 "chrome_elf.ver",
12 ] 13 ]
13 output = "$target_gen_dir/chrome_elf_version.rc" 14 output = "$target_gen_dir/chrome_elf_version.rc"
14 } 15 }
15 16
16 # This manifest matches what GYP produces. It may not even be necessary. 17 # This manifest matches what GYP produces. It may not even be necessary.
17 windows_manifest("chrome_elf_manifest") { 18 windows_manifest("chrome_elf_manifest") {
18 sources = [ 19 sources = [
19 as_invoker_manifest, 20 as_invoker_manifest,
(...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
203 ] 204 ]
204 ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_2.def", 205 ldflags = [ "/DEF:" + rebase_path("blacklist/test/blacklist_test_dll_2.def",
205 root_build_dir) ] 206 root_build_dir) ]
206 } 207 }
207 208
208 shared_library("blacklist_test_dll_3") { 209 shared_library("blacklist_test_dll_3") {
209 sources = [ 210 sources = [
210 "blacklist/test/blacklist_test_dll_3.cc", 211 "blacklist/test/blacklist_test_dll_3.cc",
211 ] 212 ]
212 } 213 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698