mirror of
https://github.com/klzgrad/naiveproxy.git
synced 2024-11-24 14:26:09 +03:00
35 lines
792 B
Plaintext
35 lines
792 B
Plaintext
# Copyright 2018 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.
|
|
|
|
import("//build/config/android/config.gni")
|
|
|
|
if (use_order_profiling && target_cpu == "arm") {
|
|
static_library("orderfile_instrumentation") {
|
|
sources = [
|
|
"orderfile_instrumentation.cc",
|
|
"orderfile_instrumentation.h",
|
|
]
|
|
deps = [
|
|
"//base",
|
|
]
|
|
}
|
|
|
|
executable("orderfile_instrumentation_perftest") {
|
|
testonly = true
|
|
|
|
sources = [
|
|
"orderfile_instrumentation_perftest.cc",
|
|
]
|
|
|
|
deps = [
|
|
":orderfile_instrumentation",
|
|
"//base",
|
|
"//testing/gtest",
|
|
"//testing/perf",
|
|
]
|
|
|
|
configs -= [ "//build/config/android:default_orderfile_instrumentation" ]
|
|
}
|
|
}
|