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 'chrome_common_target': 0, | 8 'chrome_common_target': 0, |
9 }, | 9 }, |
10 'target_conditions': [ | 10 'target_conditions': [ |
(...skipping 51 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
62 'common/multi_process_lock_win.cc', | 62 'common/multi_process_lock_win.cc', |
63 'common/nacl_cmd_line.cc', | 63 'common/nacl_cmd_line.cc', |
64 'common/nacl_cmd_line.h', | 64 'common/nacl_cmd_line.h', |
65 'common/nacl_messages.cc', | 65 'common/nacl_messages.cc', |
66 'common/nacl_messages.h', | 66 'common/nacl_messages.h', |
67 'common/nacl_types.h', | 67 'common/nacl_types.h', |
68 'common/profiling.cc', | 68 'common/profiling.cc', |
69 'common/profiling.h', | 69 'common/profiling.h', |
70 'common/ref_counted_util.h', | 70 'common/ref_counted_util.h', |
71 'common/safe_browsing/safebrowsing_messages.h', | 71 'common/safe_browsing/safebrowsing_messages.h', |
72 'common/sandbox_policy.cc', | |
73 'common/sandbox_policy.h', | |
74 'common/switch_utils.cc', | 72 'common/switch_utils.cc', |
75 'common/switch_utils.h', | 73 'common/switch_utils.h', |
76 'common/time_format.cc', | 74 'common/time_format.cc', |
77 'common/time_format.h', | 75 'common/time_format.h', |
78 'common/win_safe_util.cc', | 76 'common/win_safe_util.cc', |
79 'common/win_safe_util.h', | 77 'common/win_safe_util.h', |
80 ], | 78 ], |
81 }], | 79 }], |
82 ], | 80 ], |
83 }, | 81 }, |
(...skipping 239 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
323 ['OS=="linux" and selinux==1', { | 321 ['OS=="linux" and selinux==1', { |
324 'dependencies': [ | 322 'dependencies': [ |
325 '../build/linux/system.gyp:selinux', | 323 '../build/linux/system.gyp:selinux', |
326 ], | 324 ], |
327 }], | 325 }], |
328 ['OS=="mac"', { | 326 ['OS=="mac"', { |
329 'include_dirs': [ | 327 'include_dirs': [ |
330 '../third_party/GTM', | 328 '../third_party/GTM', |
331 ], | 329 ], |
332 }], | 330 }], |
333 ['OS!="win"', { | |
334 'sources!': [ | |
335 'common/sandbox_policy.cc', | |
336 ], | |
337 }], | |
338 ['remoting==1', { | 331 ['remoting==1', { |
339 'dependencies': [ | 332 'dependencies': [ |
340 '../remoting/remoting.gyp:remoting_client_plugin', | 333 '../remoting/remoting.gyp:remoting_client_plugin', |
341 ], | 334 ], |
342 }], | 335 }], |
343 ], | 336 ], |
344 'export_dependent_settings': [ | 337 'export_dependent_settings': [ |
345 '../app/app.gyp:app_base', | 338 '../app/app.gyp:app_base', |
346 '../base/base.gyp:base', | 339 '../base/base.gyp:base', |
347 ], | 340 ], |
(...skipping 182 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
530 'configurations': { | 523 'configurations': { |
531 'Common_Base': { | 524 'Common_Base': { |
532 'msvs_target_platform': 'x64', | 525 'msvs_target_platform': 'x64', |
533 }, | 526 }, |
534 }, | 527 }, |
535 }, | 528 }, |
536 ], | 529 ], |
537 }], | 530 }], |
538 ], | 531 ], |
539 } | 532 } |
OLD | NEW |