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': [ |
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 'app_paths.h', | 21 'app_paths.h', |
22 'app_paths.cc', | 22 'app_paths.cc', |
23 'app_switches.h', | 23 'app_switches.h', |
24 'app_switches.cc', | 24 'app_switches.cc', |
25 'hi_res_timer_manager_posix.cc', | 25 '../ui/base/system_monitor/system_monitor.cc', |
26 'hi_res_timer_manager_win.cc', | 26 '../ui/base/system_monitor/system_monitor.h', |
27 'hi_res_timer_manager.h', | 27 '../ui/base/system_monitor/system_monitor_mac.mm', |
28 'system_monitor.cc', | 28 '../ui/base/system_monitor/system_monitor_posix.cc', |
29 'system_monitor.h', | 29 '../ui/base/system_monitor/system_monitor_win.cc', |
30 'system_monitor_mac.mm', | |
31 'system_monitor_posix.cc', | |
32 'system_monitor_win.cc', | |
33 ], | 30 ], |
34 'conditions': [ | 31 'conditions': [ |
35 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"', { | 32 ['OS!="linux" and OS!="freebsd" and OS!="openbsd"', { |
36 'sources!': [ | 33 'sources!': [ |
37 'gtk_dnd_util.cc', | 34 'gtk_dnd_util.cc', |
38 'gtk_dnd_util.h', | 35 'gtk_dnd_util.h', |
39 'gtk_signal.h', | 36 'gtk_signal.h', |
40 'gtk_signal_registrar.cc', | 37 'gtk_signal_registrar.cc', |
41 'gtk_signal_registrar.h', | 38 'gtk_signal_registrar.h', |
42 'x11_util.cc', | 39 'x11_util.cc', |
(...skipping 412 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
455 'configurations': { | 452 'configurations': { |
456 'Common_Base': { | 453 'Common_Base': { |
457 'msvs_target_platform': 'x64', | 454 'msvs_target_platform': 'x64', |
458 }, | 455 }, |
459 }, | 456 }, |
460 }, | 457 }, |
461 ], | 458 ], |
462 }], | 459 }], |
463 ], | 460 ], |
464 } | 461 } |
OLD | NEW |