diff options
author | martina.kollarova <martina.kollarova@intel.com> | 2016-01-20 00:45:17 -0800 |
---|---|---|
committer | Commit bot <commit-bot@chromium.org> | 2016-01-20 08:46:21 +0000 |
commit | 2898f5d5d50edda44133e1db9c365d4f20d6bdd4 (patch) | |
tree | ce35eba3fbf519010536be7eb1da0febdce43947 /blimp/net | |
parent | 533de374183ff13b9e62a46605750a431b929949 (diff) | |
download | chromium_src-2898f5d5d50edda44133e1db9c365d4f20d6bdd4.zip chromium_src-2898f5d5d50edda44133e1db9c365d4f20d6bdd4.tar.gz chromium_src-2898f5d5d50edda44133e1db9c365d4f20d6bdd4.tar.bz2 |
Fix GN warning about missing source in blimp/net
Remove reference to blimp/net/blimp_net_test_export.h, which doesn't
exist and never existed. Introduced in ca0470f5edd, probably by mistake.
Fixes the following error in gn check:
ERROR at //blimp/net/BUILD.gn:65:1: Source file not found.
source_set("test_support") {
^---------------------------
The target:
//blimp/net:test_support
has a source file:
//blimp/net/blimp_net_test_export.h
which was not found.
BUG=502447
Review URL: https://codereview.chromium.org/1604483002
Cr-Commit-Position: refs/heads/master@{#370339}
Diffstat (limited to 'blimp/net')
-rw-r--r-- | blimp/net/BUILD.gn | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/blimp/net/BUILD.gn b/blimp/net/BUILD.gn index 30075bc..627b09b 100644 --- a/blimp/net/BUILD.gn +++ b/blimp/net/BUILD.gn @@ -66,7 +66,6 @@ source_set("test_support") { testonly = true sources = [ - "blimp_net_test_export.h", "test_common.cc", "test_common.h", ] |