Use source_set rather than static_library

According to jamesr, static_library is almost never what we want because we
just configure static libraries to be thin archives anyway.

R=jamesr@chromium.org

Review URL: https://codereview.chromium.org/766053007
This commit is contained in:
Adam Barth 2014-12-01 23:51:06 -08:00
parent c01b5913ce
commit c95f06ca84
2 changed files with 2 additions and 2 deletions

View File

@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
static_library("compositor") { source_set("compositor") {
sources = [ sources = [
"layer.cc", "layer.cc",
"layer.h", "layer.h",

View File

@ -2,7 +2,7 @@
# Use of this source code is governed by a BSD-style license that can be # Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file. # found in the LICENSE file.
static_library("scheduler") { source_set("scheduler") {
sources = [ sources = [
"scheduler.cc", "scheduler.cc",
"scheduler.h", "scheduler.h",