| OLD | NEW |
| 1 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2011 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': [ |
| 11 # This part is shared between the targets defined below. Only files and | 11 # This part is shared between the targets defined below. Only files and |
| 12 # settings relevant for building the Win64 target should be added here. | 12 # settings relevant for building the Win64 target should be added here. |
| 13 # All the rest should be added to the 'app_base' target below. | 13 # All the rest should be added to the 'app_base' target below. |
| 14 ['app_base_target==1', { | 14 ['app_base_target==1', { |
| 15 'sources': [ | 15 'sources': [ |
| 16 # Used both for Chrome and for Win64 NaCl loader | 16 # Used both for Chrome and for Win64 NaCl loader |
| 17 '../ui/base/models/tree_model.cc', | 17 '../ui/base/models/tree_model.cc', |
| 18 '../ui/base/models/tree_model.h', | 18 '../ui/base/models/tree_model.h', |
| 19 '../ui/base/models/tree_node_iterator.h', | 19 '../ui/base/models/tree_node_iterator.h', |
| 20 '../ui/base/models/tree_node_model.h', | 20 '../ui/base/models/tree_node_model.h', |
| 21 '../ui/base/system_monitor/system_monitor.cc', |
| 22 '../ui/base/system_monitor/system_monitor.h', |
| 23 '../ui/base/system_monitor/system_monitor_mac.mm', |
| 24 '../ui/base/system_monitor/system_monitor_posix.cc', |
| 25 '../ui/base/system_monitor/system_monitor_win.cc', |
| 21 '../ui/base/ui_base_paths.h', | 26 '../ui/base/ui_base_paths.h', |
| 22 '../ui/base/ui_base_paths.cc', | 27 '../ui/base/ui_base_paths.cc', |
| 23 '../ui/base/ui_base_switches.h', | 28 '../ui/base/ui_base_switches.h', |
| 24 '../ui/base/ui_base_switches.cc', | 29 '../ui/base/ui_base_switches.cc', |
| 25 'app_paths.h', | 30 'app_paths.h', |
| 26 'app_paths.cc', | 31 'app_paths.cc', |
| 27 ], | 32 ], |
| 28 'conditions': [ | 33 'conditions': [ |
| 29 ['toolkit_uses_gtk!=1', { | 34 ['toolkit_uses_gtk!=1', { |
| 30 'sources!': [ | 35 'sources!': [ |
| (...skipping 329 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 360 'configurations': { | 365 'configurations': { |
| 361 'Common_Base': { | 366 'Common_Base': { |
| 362 'msvs_target_platform': 'x64', | 367 'msvs_target_platform': 'x64', |
| 363 }, | 368 }, |
| 364 }, | 369 }, |
| 365 }, | 370 }, |
| 366 ], | 371 ], |
| 367 }], | 372 }], |
| 368 ], | 373 ], |
| 369 } | 374 } |
| OLD | NEW |