| Index: runtime/vm/dev_fs.cc
 | 
| diff --git a/runtime/vm/dev_fs.cc b/runtime/vm/dev_fs.cc
 | 
| index afbb23b91d3c0a9b579163bd29541f5a6055bf7c..9dce2b067e0cfe397632dec964a8315ab0f88474 100644
 | 
| --- a/runtime/vm/dev_fs.cc
 | 
| +++ b/runtime/vm/dev_fs.cc
 | 
| @@ -2,6 +2,8 @@
 | 
|  // for details. All rights reserved. Use of this source code is governed by a
 | 
|  // BSD-style license that can be found in the LICENSE file.
 | 
|  
 | 
| +#ifndef PRODUCT
 | 
| +
 | 
|  #include <map>
 | 
|  #include <string>
 | 
|  #include <vector>
 | 
| @@ -16,8 +18,6 @@
 | 
|  
 | 
|  namespace dart {
 | 
|  
 | 
| -#ifndef PRODUCT
 | 
| -
 | 
|  static const uint8_t decode_table[256] = {
 | 
|    64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
 | 
|    64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64, 64,
 | 
| @@ -370,6 +370,6 @@ void DevFS::ReadFile(JSONStream* js,
 | 
|                            file_contents->size());
 | 
|  }
 | 
|  
 | 
| -#endif  // !PRODUCT
 | 
| -
 | 
|  }  // namespace dart
 | 
| +
 | 
| +#endif  // !PRODUCT
 | 
| 
 |