Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(88)

Side by Side Diff: chrome/chrome_common.gypi

Issue 8599010: Setup JS unittests for Chromoting (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: Don't use <(DEPTH) with "includes" in gyps Created 9 years, 1 month ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
« no previous file with comments | « no previous file | chrome/chrome_installer.gypi » ('j') | remoting/webapp/me2mom/debug_log.gtestjs » ('J')
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
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 'targets': [ 6 'targets': [
7 { 7 {
8 'target_name': 'common', 8 'target_name': 'common',
9 'type': 'static_library', 9 'type': 'static_library',
10 'variables': { 10 'variables': {
11 'chrome_common_target': 1, 11 'chrome_common_target': 1,
12 # TODO(thakis): Turn this on. Blocked on g_log_function_mapping in 12 # TODO(thakis): Turn this on. Blocked on g_log_function_mapping in
13 # ipc_message_macros.h. http://crbug.com/101600 13 # ipc_message_macros.h. http://crbug.com/101600
14 #'enable_wexit_time_destructors': 1, 14 #'enable_wexit_time_destructors': 1,
15 }, 15 },
16 'include_dirs': [ 16 'include_dirs': [
17 '..', 17 '..',
18 ], 18 ],
19 'direct_dependent_settings': { 19 'direct_dependent_settings': {
20 'include_dirs': [ 20 'include_dirs': [
21 '..', 21 '..',
22 ], 22 ],
23 }, 23 },
24 'dependencies': [ 24 'dependencies': [
25 # TODO(gregoryd): chrome_resources and chrome_strings could be 25 # TODO(gregoryd): chrome_resources and chrome_strings could be
26 # shared with the 64-bit target, but it does not work due to a gyp 26 # shared with the 64-bit target, but it does not work due to a gyp
27 # issue. 27 # issue.
28 'app/policy/cloud_policy_codegen.gyp:policy',
29 'chrome_resources.gyp:chrome_resources',
30 'chrome_resources.gyp:chrome_strings',
31 'chrome_resources.gyp:theme_resources',
32 'common_constants', 28 'common_constants',
33 'common_net', 29 'common_net',
34 'common_version', 30 'common_version',
35 'default_plugin/default_plugin.gyp:default_plugin', 31 '<(DEPTH)/base/base.gyp:base',
36 '../base/base.gyp:base', 32 '<(DEPTH)/base/base.gyp:base_i18n',
37 '../base/base.gyp:base_i18n', 33 '<(DEPTH)/base/base.gyp:base_static',
38 '../base/base.gyp:base_static', 34 '<(DEPTH)/build/temp_gyp/googleurl.gyp:googleurl',
39 '../build/temp_gyp/googleurl.gyp:googleurl', 35 '<(DEPTH)/chrome/app/policy/cloud_policy_codegen.gyp:policy',
40 '../content/content.gyp:content_common', 36 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
41 '../ipc/ipc.gyp:ipc', 37 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
42 '../net/net.gyp:net', 38 '<(DEPTH)/chrome/chrome_resources.gyp:theme_resources',
43 '../printing/printing.gyp:printing', 39 '<(DEPTH)/chrome/default_plugin/default_plugin.gyp:default_plugin',
44 '../skia/skia.gyp:skia', 40 '<(DEPTH)/content/content.gyp:content_common',
45 '../third_party/bzip2/bzip2.gyp:bzip2', 41 '<(DEPTH)/ipc/ipc.gyp:ipc',
46 '../third_party/icu/icu.gyp:icui18n', 42 '<(DEPTH)/net/net.gyp:net',
47 '../third_party/icu/icu.gyp:icuuc', 43 '<(DEPTH)/printing/printing.gyp:printing',
48 '../third_party/libxml/libxml.gyp:libxml', 44 '<(DEPTH)/skia/skia.gyp:skia',
49 '../third_party/sqlite/sqlite.gyp:sqlite', 45 '<(DEPTH)/third_party/bzip2/bzip2.gyp:bzip2',
50 '../third_party/zlib/zlib.gyp:zlib', 46 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
51 '../ui/ui.gyp:ui_resources', 47 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
52 '../ui/ui.gyp:ui_resources_standard', 48 '<(DEPTH)/third_party/libxml/libxml.gyp:libxml',
53 '../webkit/support/webkit_support.gyp:glue', 49 '<(DEPTH)/third_party/sqlite/sqlite.gyp:sqlite',
50 '<(DEPTH)/third_party/zlib/zlib.gyp:zlib',
51 '<(DEPTH)/ui/ui.gyp:ui_resources',
52 '<(DEPTH)/ui/ui.gyp:ui_resources_standard',
53 '<(DEPTH)/webkit/support/webkit_support.gyp:glue',
54 ], 54 ],
55 'sources': [ 55 'sources': [
56 'common/about_handler.cc', 56 'common/about_handler.cc',
57 'common/about_handler.h', 57 'common/about_handler.h',
58 'common/all_messages.h', 58 'common/all_messages.h',
59 'common/attrition_experiments.h', 59 'common/attrition_experiments.h',
60 'common/auto_start_linux.cc', 60 'common/auto_start_linux.cc',
61 'common/auto_start_linux.h', 61 'common/auto_start_linux.h',
62 'common/autofill_messages.h', 62 'common/autofill_messages.h',
63 'common/automation_constants.cc', 63 'common/automation_constants.cc',
(...skipping 310 matching lines...) Expand 10 before | Expand all | Expand 10 after
374 'common/net/gaia/google_service_auth_error.cc', 374 'common/net/gaia/google_service_auth_error.cc',
375 'common/net/gaia/google_service_auth_error.h', 375 'common/net/gaia/google_service_auth_error.h',
376 'common/net/gaia/oauth_request_signer.cc', 376 'common/net/gaia/oauth_request_signer.cc',
377 'common/net/gaia/oauth_request_signer.h', 377 'common/net/gaia/oauth_request_signer.h',
378 'common/net/x509_certificate_model.cc', 378 'common/net/x509_certificate_model.cc',
379 'common/net/x509_certificate_model_nss.cc', 379 'common/net/x509_certificate_model_nss.cc',
380 'common/net/x509_certificate_model_openssl.cc', 380 'common/net/x509_certificate_model_openssl.cc',
381 'common/net/x509_certificate_model.h', 381 'common/net/x509_certificate_model.h',
382 ], 382 ],
383 'dependencies': [ 383 'dependencies': [
384 'chrome_resources.gyp:chrome_resources', 384 '<(DEPTH)/base/base.gyp:base',
385 'chrome_resources.gyp:chrome_strings', 385 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_resources',
386 '../base/base.gyp:base', 386 '<(DEPTH)/chrome/chrome_resources.gyp:chrome_strings',
387 '../crypto/crypto.gyp:crypto', 387 '<(DEPTH)/crypto/crypto.gyp:crypto',
388 '../gpu/gpu.gyp:gpu_ipc', 388 '<(DEPTH)/gpu/gpu.gyp:gpu_ipc',
389 '../net/net.gyp:net_resources', 389 '<(DEPTH)/net/net.gyp:net_resources',
390 '../net/net.gyp:net', 390 '<(DEPTH)/net/net.gyp:net',
391 '../third_party/icu/icu.gyp:icui18n', 391 '<(DEPTH)/third_party/icu/icu.gyp:icui18n',
392 '../third_party/icu/icu.gyp:icuuc', 392 '<(DEPTH)/third_party/icu/icu.gyp:icuuc',
393 ], 393 ],
394 'conditions': [ 394 'conditions': [
395 ['os_posix == 1 and OS != "mac"', { 395 ['os_posix == 1 and OS != "mac"', {
396 'dependencies': [ 396 'dependencies': [
397 '../build/linux/system.gyp:ssl', 397 '../build/linux/system.gyp:ssl',
398 ], 398 ],
399 }, 399 },
400 { # else: OS is not in the above list 400 { # else: OS is not in the above list
401 'sources!': [ 401 'sources!': [
402 'common/net/x509_certificate_model_nss.cc', 402 'common/net/x509_certificate_model_nss.cc',
(...skipping 25 matching lines...) Expand all
428 'common/safe_browsing/csd.proto' 428 'common/safe_browsing/csd.proto'
429 ], 429 ],
430 'variables': { 430 'variables': {
431 'proto_in_dir': 'common/safe_browsing', 431 'proto_in_dir': 'common/safe_browsing',
432 'proto_out_dir': 'chrome/common/safe_browsing', 432 'proto_out_dir': 'chrome/common/safe_browsing',
433 }, 433 },
434 'includes': [ '../build/protoc.gypi' ], 434 'includes': [ '../build/protoc.gypi' ],
435 }, 435 },
436 ], 436 ],
437 } 437 }
OLDNEW
« no previous file with comments | « no previous file | chrome/chrome_installer.gypi » ('j') | remoting/webapp/me2mom/debug_log.gtestjs » ('J')

Powered by Google App Engine
This is Rietveld 408576698