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:
parent
c01b5913ce
commit
c95f06ca84
@ -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",
|
||||||
|
@ -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",
|
||||||
|
Loading…
x
Reference in New Issue
Block a user