blob: 865f995ff635917d47c6bd719e4dd99e4515ac80 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
# Copyright 2015 The Chromium Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
source_set("native_messaging") {
sources = [
"log_message_handler.cc",
"log_message_handler.h",
"native_messaging_pipe.cc",
"native_messaging_pipe.h",
"native_messaging_reader.cc",
"native_messaging_reader.h",
"native_messaging_writer.cc",
"native_messaging_writer.h",
"pipe_messaging_channel.cc",
"pipe_messaging_channel.h",
]
configs += [ "//build/config/compiler:wexit_time_destructors" ]
deps = [ "//base" ]
}
|