| Index: blimp/client/core/switches/BUILD.gn
|
| diff --git a/blimp/client/core/switches/BUILD.gn b/blimp/client/core/switches/BUILD.gn
|
| new file mode 100644
|
| index 0000000000000000000000000000000000000000..00cc89edb215b68e113ebc9bc4d717bf9e7a030e
|
| --- /dev/null
|
| +++ b/blimp/client/core/switches/BUILD.gn
|
| @@ -0,0 +1,29 @@
|
| +# Copyright 2016 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.
|
| +
|
| +if (is_android) {
|
| + import("//build/config/android/config.gni")
|
| + import("//build/config/android/rules.gni")
|
| +}
|
| +
|
| +source_set("switches") {
|
| + visibility = [
|
| + "//blimp/client/*",
|
| + "//blimp/engine:browser_tests",
|
| + ]
|
| +
|
| + sources = [
|
| + "blimp_client_switches.cc",
|
| + "blimp_client_switches.h",
|
| + ]
|
| +}
|
| +
|
| +if (is_android) {
|
| + android_library("switches_java") {
|
| + visibility = [ "//blimp/client/*" ]
|
| +
|
| + java_files =
|
| + [ "android/java/src/org/chromium/blimp/core/BlimpClientSwitches.java" ]
|
| + }
|
| +}
|
|
|