| OLD | NEW |
| 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2010 The Chromium Authors. All rights reserved. |
| 2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
| 3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
| 4 | 4 |
| 5 { | 5 { |
| 6 'target_defaults': { | 6 'target_defaults': { |
| 7 'variables': { | 7 'variables': { |
| 8 'app_base_target': 0, | 8 'app_base_target': 0, |
| 9 }, | 9 }, |
| 10 'target_conditions': [ | 10 'target_conditions': [ |
| (...skipping 15 matching lines...) Expand all Loading... |
| 26 'system_monitor_posix.cc', | 26 'system_monitor_posix.cc', |
| 27 'system_monitor_win.cc', | 27 'system_monitor_win.cc', |
| 28 'tree_model.h', | 28 'tree_model.h', |
| 29 'tree_node_iterator.h', | 29 'tree_node_iterator.h', |
| 30 'tree_node_model.h', | 30 'tree_node_model.h', |
| 31 'win/window_impl.cc', | 31 'win/window_impl.cc', |
| 32 'win/window_impl.h', | 32 'win/window_impl.h', |
| 33 ], | 33 ], |
| 34 'include_dirs': [ | 34 'include_dirs': [ |
| 35 '..', | 35 '..', |
| 36 '../chrome/third_party/wtl/include', | 36 '<(DEPTH)/third_party/wtl/include', |
| 37 ], | 37 ], |
| 38 'conditions': [ | 38 'conditions': [ |
| 39 ['OS=="win"', { | 39 ['OS=="win"', { |
| 40 'sources': [ | 40 'sources': [ |
| 41 'win_util.cc', | 41 'win_util.cc', |
| 42 'win_util.h', | 42 'win_util.h', |
| 43 'win_util_path.cc', | 43 'win_util_path.cc', |
| 44 ], | 44 ], |
| 45 }], | 45 }], |
| 46 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"', { | 46 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"', { |
| (...skipping 245 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 292 'configurations': { | 292 'configurations': { |
| 293 'Common_Base': { | 293 'Common_Base': { |
| 294 'msvs_target_platform': 'x64', | 294 'msvs_target_platform': 'x64', |
| 295 }, | 295 }, |
| 296 }, | 296 }, |
| 297 }, | 297 }, |
| 298 ], | 298 ], |
| 299 }], | 299 }], |
| 300 ], | 300 ], |
| 301 } | 301 } |
| OLD | NEW |