mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
20 lines
454 B
Plaintext
20 lines
454 B
Plaintext
|
# No blank inserted after libs (caused by trailing comment on 'else').
|
||
|
component("google_toolbox_for_mac") {
|
||
|
if (!is_ios) {
|
||
|
sources += [
|
||
|
"src/AddressBook/GTMABAddressBook.h",
|
||
|
"src/AddressBook/GTMABAddressBook.m",
|
||
|
]
|
||
|
|
||
|
libs = [
|
||
|
"AddressBook.framework",
|
||
|
"AppKit.framework",
|
||
|
]
|
||
|
} else { # is_ios
|
||
|
sources += [
|
||
|
"src/iPhone/GTMFadeTruncatingLabel.h",
|
||
|
"src/iPhone/GTMFadeTruncatingLabel.m",
|
||
|
]
|
||
|
}
|
||
|
}
|